fix for - 23979 Correct place to find and put default mapping and serve static files in dot net 6
parent
d8cb942ed8
commit
b6d5d316c1
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
|
@ -35,9 +35,9 @@ The `fetch` function returns a [Promise](https://developer.mozilla.org/docs/Web/
|
|||
|
||||
The simplest `fetch` call accepts a single parameter representing the route. A second parameter, known as the `init` object, is optional. `init` is used to configure the HTTP request.
|
||||
|
||||
1. Configure the app to [serve static files](/dotnet/api/microsoft.aspnetcore.builder.staticfileextensions.usestaticfiles#Microsoft_AspNetCore_Builder_StaticFileExtensions_UseStaticFiles_Microsoft_AspNetCore_Builder_IApplicationBuilder_) and [enable default file mapping](/dotnet/api/microsoft.aspnetcore.builder.defaultfilesextensions.usedefaultfiles#Microsoft_AspNetCore_Builder_DefaultFilesExtensions_UseDefaultFiles_Microsoft_AspNetCore_Builder_IApplicationBuilder_). The following highlighted code is needed in the `Configure` method of *Startup.cs*:
|
||||
1. Configure the app to [serve static files](/dotnet/api/microsoft.aspnetcore.builder.staticfileextensions.usestaticfiles#Microsoft_AspNetCore_Builder_StaticFileExtensions_UseStaticFiles_Microsoft_AspNetCore_Builder_IApplicationBuilder_) and [enable default file mapping](/dotnet/api/microsoft.aspnetcore.builder.defaultfilesextensions.usedefaultfiles#Microsoft_AspNetCore_Builder_DefaultFilesExtensions_UseDefaultFiles_Microsoft_AspNetCore_Builder_IApplicationBuilder_). The following highlighted code is needed in the *Program.cs*:
|
||||
|
||||
[!code-csharp[](first-web-api/samples/3.0/TodoApi/StartupJavaScript.cs?highlight=8-9&name=snippet_configure)]
|
||||
![Program file](first-web-api/_static/EnableDefaultMappingAndServeStaticFiles.png)
|
||||
|
||||
1. Create a *wwwroot* folder in the project root.
|
||||
|
||||
|
|
Loading…
Reference in New Issue