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