mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
8 lines
142 B
TypeScript
8 lines
142 B
TypeScript
|
import { defineNuxtConfig } from 'nuxt3'
|
||
|
|
||
|
export default defineNuxtConfig({
|
||
|
components: [
|
||
|
{ path: './components', prefix: 'UI' }
|
||
|
]
|
||
|
})
|