We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f7315b commit eaa6eabCopy full SHA for eaa6eab
2 files changed
netlify.toml
@@ -0,0 +1,28 @@
1
+[build]
2
+ base = "."
3
+ publish = "playground/.output/public"
4
+ command = "pnpm install && pnpm dev:prepare && pnpm dev:build"
5
+
6
+[[redirects]]
7
+ from = "/*"
8
+ to = "/index.html"
9
+ status = 200
10
11
+[build.environment]
12
+ NODE_VERSION = "24"
13
14
+[[headers]]
15
+ for = "/*"
16
+ [headers.values]
17
+ X-Frame-Options = "DENY"
18
+ X-Content-Type-Options = "nosniff"
19
+ Referrer-Policy = "strict-origin-when-cross-origin"
20
21
22
+ for = "/_nuxt/*"
23
24
+ Cache-Control = "public, max-age=31536000, immutable"
25
26
27
28
playground/public/_redirects
@@ -0,0 +1,2 @@
+# SPA fallback for client-side routing
+/* /index.html 200
0 commit comments