14 lines
379 B
TypeScript
14 lines
379 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxt/eslint', '@nuxt/image', '@nuxt/test-utils', '@pinia/nuxt'],
|
|
vite: {
|
|
vue: {
|
|
customElement: true,
|
|
},
|
|
vueJsx: {
|
|
mergeProps: true,
|
|
},
|
|
},
|
|
}) |