2023-10-18 10:59:43 +00:00
|
|
|
// https://nuxt.com/docs/api/nuxt-config
|
2023-04-06 11:51:32 +00:00
|
|
|
export default defineNuxtConfig({
|
2024-04-30 19:34:32 +00:00
|
|
|
future: { compatibilityVersion: process.env.TEST_V4 === 'true' ? 4 : 3 },
|
2024-06-28 11:53:25 +00:00
|
|
|
compatibilityDate: '2024-06-28',
|
2023-04-06 11:51:32 +00:00
|
|
|
experimental: {
|
2024-04-05 18:08:32 +00:00
|
|
|
externalVue: false,
|
2023-04-06 11:51:32 +00:00
|
|
|
},
|
2023-05-01 16:39:07 +00:00
|
|
|
vue: {
|
2024-04-05 18:08:32 +00:00
|
|
|
runtimeCompiler: true,
|
2023-05-01 16:39:07 +00:00
|
|
|
},
|
2024-04-05 18:08:32 +00:00
|
|
|
builder: process.env.TEST_BUILDER as 'webpack' | 'vite' ?? 'vite',
|
2023-04-06 11:51:32 +00:00
|
|
|
})
|