修改vue中的挂载页面(index.html)的路径
vue中的挂载页面index.html路径是在webpack.dev.conf.js下配置的,找到plugins下面的new HtmlWebpackPlugin({filename: 'index.html',template: 'index.html',inject: true}),以上便是挂载页面的配置,其中filen...
·
vue中的挂载页面index.html路径是在webpack.dev.conf.js下配置的,
找到plugins下面的
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true
}),
以上便是挂载页面的配置,其中
filename是输出的文件名,默认是index.html
template是依赖的模板,修改这个就能改变挂载的模板路径
例如
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'src/index.html',
inject: true
}),
以上配置将启用src下的index.html路径。
更多推荐
已为社区贡献4条内容
所有评论(0)