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