mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
13 lines
346 B
TypeScript
13 lines
346 B
TypeScript
// https://nuxt.com/docs/api/nuxt-config
|
|
export default defineNuxtConfig({
|
|
future: { compatibilityVersion: process.env.TEST_V4 === 'true' ? 4 : 3 },
|
|
compatibilityDate: '2024-06-28',
|
|
experimental: {
|
|
externalVue: false,
|
|
},
|
|
vue: {
|
|
runtimeCompiler: true,
|
|
},
|
|
builder: process.env.TEST_BUILDER as 'webpack' | 'vite' ?? 'vite',
|
|
})
|