From 6caedc84dd65dab0186055f23bf9e685356412cc Mon Sep 17 00:00:00 2001 From: Techit Thawiang Date: Sun, 9 Nov 2025 17:57:19 +0700 Subject: [PATCH] fix experimentalNoScripts for treee --- nuxt.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index a3a7348..561f6ce 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -103,6 +103,7 @@ export default defineNuxtConfig({ "*": { experimentalNoScripts: true }, // one level deep, render all pages statically "posts/*": { experimentalNoScripts: true }, // one level deep, render all post pages statically "fonts": { experimentalNoScripts: false }, // except /fonts - "tree/*": { experimentalNoScripts: false }, // except /tree + "tree": { experimentalNoScripts: false }, // except /tree + "tree/*": { experimentalNoScripts: false }, // except /tree/* } }) \ No newline at end of file