Skip to content

Commit 4effe47

Browse files
committed
Update navigation fallback and add custom MIME types
Expanded navigation fallback exclusions to include framework, JS, and content paths; removed image exclusions. Added custom MIME types for .js and .wasm files.
1 parent 1eacd68 commit 4effe47

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"navigationFallback": {
33
"rewrite": "/index.html",
4-
"exclude": [ "/images/*.{png,jpg,gif}", "/css/*" ]
4+
"exclude": [ "/_framework/*", "/css/*", "/js/*", "/_content/*" ]
5+
},
6+
"mimeTypes": {
7+
".js": "application/javascript",
8+
".wasm": "application/wasm"
59
}
6-
}
10+
}

0 commit comments

Comments
 (0)