11 lines
334 B
TypeScript
11 lines
334 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxt/eslint', '@nuxtjs/tailwindcss', '@pinia/nuxt'],
|
|
vue: {
|
|
compilerOptions: {
|
|
isCustomElement: (tag) => ['atropos-component'].includes(tag)
|
|
}
|
|
}
|
|
}) |