diff --git a/.playground/nuxt.config.ts b/.playground/nuxt.config.ts index b6c53d6..ebf3d07 100644 --- a/.playground/nuxt.config.ts +++ b/.playground/nuxt.config.ts @@ -4,16 +4,21 @@ export default defineNuxtConfig({ modules: [ NuxtDelayHydration, ], + delayHydration: { mode: false, exclude: ['/not-delayed'], }, + app: { head: { title: 'default title', }, }, + experimental: { inlineRouteRules: true, }, -}) + + compatibilityDate: '2024-09-02', +}) \ No newline at end of file diff --git a/package.json b/package.json index d982a5e..a22d635 100644 --- a/package.json +++ b/package.json @@ -33,6 +33,7 @@ "scripts": { "dev": "nuxi dev .playground", "stub": "npx terser src/template/global.mjs -o src/runtime/template/global.mjs && npx terser src/template/replay.mjs -o src/runtime/template/replay.mjs && nuxt-module-build build --stub", + "dev:prepare": "pnpm stub", "build": "nuxi prepare .playground && nuxt-module-build build", "lint": "eslint . --fix", "release": "bumpp package.json packages/*/package.json --commit --push --tag",