From 8546b99035c7b1ac3a1cb8097f4265b9aaf9fcd4 Mon Sep 17 00:00:00 2001 From: Alejandro Rosales Date: Fri, 28 Nov 2025 10:17:15 -0600 Subject: [PATCH] Add staticwebapp.config.json for navigation fallback configuration --- staticwebapp.config.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 staticwebapp.config.json diff --git a/staticwebapp.config.json b/staticwebapp.config.json new file mode 100644 index 0000000..a7c52b1 --- /dev/null +++ b/staticwebapp.config.json @@ -0,0 +1,14 @@ +{ + "navigationFallback": { + "rewrite": "/index.html", + "exclude": [ + "/assets/*", + "/*.css", + "/*.js", + "/*.ico", + "/*.png", + "/*.jpg", + "/*.svg" + ] + } +}