You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/fundamentals/static-files.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ Creating performant web apps requires optimizing asset delivery to the browser.
45
45
* Prevent the browser from using old or stale assets after an app is updated. Set the [Last-Modified](https://developer.mozilla.org/docs/Web/HTTP/Headers/Last-Modified) header.
46
46
* Set up proper [caching headers](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control).
47
47
* Use [caching middleware](xref:performance/caching/middleware).
48
-
* Serve [compressed](/aspnet/core/performance/response-compression) versions of the assets when possible.
48
+
* Serve [compressed](/aspnet/core/performance/response-compression) versions of the assets when possible.`MapStaticAssets` integrates the information gathered about static web assets during the build or publish process with a runtime library that processes this information to optimize file serving to the browser
49
49
* Use a [CDN](/microsoft-365/enterprise/content-delivery-networks?view=o365-worldwide&preserve-view=true) to serve the assets closer to the user.
50
50
* Minimize the size of assets served to the browser. This optimization doesn't include minification.
0 commit comments