Answers for "<%= htmlwebpackplugin.options.title %> webpack"

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 "<%= htmlwebpackplugin.options.title %> webpack"

Browse Popular Code Answers by Language