Nuxt/test/fixtures/runtime-compiler/nuxt.config.ts
Daniel Roe 01bee2f0ea
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 14:57:54 +01:00

12 lines
281 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' | 'rspack' | 'vite' ?? 'vite',
})