mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 02:14:44 +00:00
b7e10e3956
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
12 lines
281 B
TypeScript
12 lines
281 B
TypeScript
// https://nuxt.com/docs/api/nuxt-config
|
|
export default defineNuxtConfig({
|
|
vue: {
|
|
runtimeCompiler: true,
|
|
},
|
|
builder: process.env.TEST_BUILDER as 'webpack' | 'rspack' | 'vite' ?? 'vite',
|
|
experimental: {
|
|
externalVue: false,
|
|
},
|
|
compatibilityDate: '2024-06-28',
|
|
})
|