mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-09 04:55:54 +00:00
11 lines
381 B
TypeScript
11 lines
381 B
TypeScript
|
export default defineNuxtConfig({
|
||
|
builder: process.env.TEST_BUILDER as 'webpack' | 'rspack' | 'vite' ?? 'vite',
|
||
|
experimental: {
|
||
|
asyncContext: process.env.TEST_CONTEXT === 'async',
|
||
|
appManifest: process.env.TEST_MANIFEST !== 'manifest-off',
|
||
|
renderJsonPayloads: process.env.TEST_PAYLOAD !== 'js',
|
||
|
inlineRouteRules: true,
|
||
|
},
|
||
|
compatibilityDate: '2024-06-28',
|
||
|
})
|