After uncommenting the CSS extracting method in the vue.config.js file and running a production build, I encountered the error mentioned above.
// vue.config.js file
// Uncomment before executing 'npm run build'
css: {
extract: {
filename: 'bundle.css',
chunkFilename: 'bundle.css',
},
}
I'm wondering if I should be passing the filename as a variable. These lines of code are the default template for extracting CSS during a production build process.