14 lines
299 B
TypeScript
14 lines
299 B
TypeScript
import { defineNuxtConfig } from 'nuxt/config'
|
|
|
|
export default defineNuxtConfig({
|
|
// Layer-specific configuration
|
|
imports: {
|
|
dirs: ['composables', 'stores', 'types', 'middleware', 'server', 'utils'],
|
|
global: true,
|
|
},
|
|
components: {
|
|
dirs: ['components'],
|
|
global: true,
|
|
},
|
|
})
|