Nuxt/examples/with-components/nuxt.config.ts
fgiraud 6b873f15bc
chore(nuxt3): add tests, comments and example for components scan (#1455)
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
2021-11-15 17:22:46 +01:00

16 lines
265 B
TypeScript

import { defineNuxtConfig } from 'nuxt3'
export default defineNuxtConfig({
vite: false,
components: {
dirs: [
'~/components',
{
path: '~/other-components-folder',
extensions: ['vue'],
prefix: 'nuxt'
}
]
}
})