docs/errors/b5004.md
Nuxt found a standalone vite.config or webpack.config file next to your nuxt.config. Nuxt manages the bundler internally and ignores these files, so they are usually leftovers from a migration or a copied non-Nuxt project.
Move the configuration into nuxt.config under the matching key, then delete the external file:
vite.config: use the vite keywebpack.config: use the webpack keynitro.config: use the nitro keypostcss.config: use the postcss keyexport default defineNuxtConfig({
vite: {
// your Vite config here
},
})
::read-more{to="/docs/getting-started/configuration"} ::