Nuxt Config
If dont install pergel yet, you can install it with Nuxt Installation.
Pergel Options
ts
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: [
'pergel/nuxt',
],
pergel: {
debug: true, // default: false
esnext: false,
projects: {
// ...
},
},
})
Projects
changeName
is your project name. You can change it.
ts
// https://nuxt.com/docs/api/configuration-nuxt-config#projects
export default defineNuxtConfig({
modules: [
'pergel/nuxt',
],
pergel: {
projects: {
changeName: {
drizzle: true,
vitest: true,
// ... more modules
}
},
},
})
TIP
If you have discovered a better structure, please contact us. We are open to suggestions.