You can disable all auto-imports altogether, is there a way to disable auto-importing only from server/utils
folder?
I’ve played around with nitro.imports.imports
but to no avail.
1
It should be like :
export default defineNuxtConfig({
//other configs
nitro: {
imports: {
autoImport: false,
},
},
})