22 lines
369 B
TypeScript
22 lines
369 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
|
|
modules: [
|
|
'@nuxt/eslint',
|
|
'@pinia/nuxt',
|
|
'@element-plus/nuxt'
|
|
],
|
|
|
|
css: ['element-plus/dist/index.css'],
|
|
|
|
nitro: {
|
|
esbuild: {
|
|
options: {
|
|
target: 'esnext'
|
|
}
|
|
}
|
|
}
|
|
})
|