Skip to content

Commit 176c140

Browse files
committed
Remove "/_framework/*" from navigationFallback excludes
The exclusion pattern "/_framework/*" was removed from the "exclude" array in the "navigationFallback" section of staticwebapp.config.json. Only "/css/*", "/js/*", and "/_content/*" are now excluded from navigation fallback rewrites.
1 parent 4effe47 commit 176c140

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

BlazorExpress.ChartJS.Demo.WebAssembly/wwwroot/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<meta property="twitter:image" content="_content/BlazorExpress.ChartJS.Demo.RCL/images/line-chart.png">
2222

2323
<base href="/" />
24-
<link rel="preload" id="webassembly" />
24+
<!--<link rel="preload" id="webassembly" />-->
2525
<link rel="icon" type="image/png" href="favicon.png" />
2626

2727
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css">

BlazorExpress.ChartJS.Demo.WebAssembly/wwwroot/staticwebapp.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"navigationFallback": {
33
"rewrite": "/index.html",
4-
"exclude": [ "/_framework/*", "/css/*", "/js/*", "/_content/*" ]
4+
"exclude": [ "/css/*", "/js/*", "/_content/*" ]
55
},
66
"mimeTypes": {
77
".js": "application/javascript",

0 commit comments

Comments
 (0)