主题
HTML
设置 title
默认标题是通过 html-webpack-plugin 插件来控制的,如下:
html
<title><%= htmlWebpackPlugin.options.title %></title>通过 pages 字段:
jsmodule.exports = { pages: { index: { entry: 'src/main.js', // 入口文件 title: '你的标题', }, }, }通过 chainWebpack 直接修改 webpack 配置:
jsmodule.exports = { chainWebpack: (config) => { config.plugin('html').tap((args) => { args[0].title = '你的标题' return args }) }, }
