docs: add pathPrefix: false

This commit is contained in:
Sadegh Barati 2023-11-09 13:04:05 +03:30
parent 8cd84d73c9
commit 9d1a7cf3d7

View File

@ -46,7 +46,9 @@ export default defineNuxtConfig({
// this is required else Nuxt will autoImport `.ts` file
extensions: ['.vue'],
// prefix for your components, eg: UiButton
prefix: 'Ui'
prefix: 'Ui',
// prevent adding another prefix component by it's path.
pathPrefix: false
})
}
}