We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
~
1 parent 910d913 commit f02c8d1Copy full SHA for f02c8d1
1 file changed
nuxt.config.ts
@@ -7,6 +7,11 @@ export default defineNuxtConfig({
7
nuxt.options.pwa.pwaAssets.disabled = true
8
}
9
},
10
+ function (_, nuxt) {
11
+ nuxt.hook('nitro:build:before', (nitro) => {
12
+ nitro.options.ssrRoutes = nitro.options.ssrRoutes.map(r => r.replace('/~', '/'))
13
+ })
14
+ },
15
'@unocss/nuxt',
16
'@nuxt/eslint',
17
'@nuxtjs/html-validator',
@@ -49,7 +54,6 @@ export default defineNuxtConfig({
49
54
50
55
51
56
experimental: {
52
- payloadExtraction: true,
53
57
viewTransition: true,
58
typedPages: true,
59
0 commit comments