Answers for "how to change <%= htmlwebpackplugin.options.title %>"

0

change htmlwebpackplugin.options.title

//vue.config.js
module.exports = {
    chainWebpack: config => {
        config
            .plugin('html')
            .tap(args => {
                args[0].title = "My Vue App";
                return args;
            })
    }
}
Posted by: Guest on May-30-2021

Code answers related to "how to change <%= htmlwebpackplugin.options.title %>"

Browse Popular Code Answers by Language