Skip to content

Commit

Permalink
fix(web-landing): Added not found page
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Nov 15, 2022
1 parent 8d5427e commit 1202a83
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
3 changes: 3 additions & 0 deletions apps/web/landing/ClientApp/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function NotFound() {
return "Couldn't find requested resource";
}
4 changes: 0 additions & 4 deletions apps/web/landing/OpenSystem.Web.Landing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@
<None Include="$(SpaRoot)**" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="6.0.0" />
</ItemGroup>

<Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('../../../node_modules') ">
<!-- Ensure Node.js is installed -->
<Exec Command="node --version" ContinueOnError="true">
Expand Down
8 changes: 2 additions & 6 deletions apps/web/shell/OpenSystem.Web.Shell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
Expand All @@ -25,10 +25,6 @@
<None Include="$(SpaRoot)**" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="6.0.0" />
</ItemGroup>

<Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('../../../node_modules') ">
<!-- Ensure Node.js is installed -->
<Exec Command="node --version" ContinueOnError="true">
Expand Down

0 comments on commit 1202a83

Please sign in to comment.