why dont i have vue.config.js code example
Example 1: vue htmlWebpackPlugin.options.title
// Put this into /vue.config.js
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = '<Your new title>'; // Replace your title here
return args;
});
}
};
Example 2: where to place vue.config.js
Place it next to your package.json file in the root folder of your project.