diff --git a/firebase.json b/firebase.json index 38e60deb..84856edf 100644 --- a/firebase.json +++ b/firebase.json @@ -1,5 +1,6 @@ { "hosting": { + "trailingSlash": false, "public": ".output/public", "ignore": ["firebase.json", "**/.*", "**/node_modules/**"], "headers": [ diff --git a/nuxt.config.ts b/nuxt.config.ts index 469a38dc..09bd4d3d 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -24,6 +24,13 @@ export default defineNuxtConfig({ '/zk-stack/concepts': { redirect: '/zk-stack/concepts/transaction-lifecycle' }, '/zk-stack/running-a-zk-chain': { redirect: '/zk-stack/running-a-zk-chain/locally' }, }, + experimental: { + defaults: { + nuxtLink: { + trailingSlash: 'remove', + }, + }, + }, pwa: { selfDestroying: true, strategies: 'generateSW',