Nuxt/test/fixtures/runtime-compiler/nuxt.config.ts
Daniel Roe e207f7e993
feat(rspack,webpack): add rspack builder (#29142)
Co-authored-by: "yangjian.fe" <yangjian.fe@bytedance.com>
Co-authored-by: underfin <likui6666666@gmail.com>
2024-10-09 15:59:32 +02:00

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',
})