mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-26 15:42:09 +00:00
e207f7e993
Co-authored-by: "yangjian.fe" <yangjian.fe@bytedance.com> Co-authored-by: underfin <likui6666666@gmail.com>
13 lines
357 B
TypeScript
13 lines
357 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' | 'rspack' | 'vite' ?? 'vite',
|
|
})
|