打小就给力
2019-02-24 20:26
为什么没有引入编译后的js文件啊?
var htmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: {
main:'./src/script/main.js',
a: './src/script/a.js'
}, //打包入口
output: { //打包好存放的路径和文件名
path: './dist',
filename: 'js/[name]-[chunkhash].js ',
},
plugins: [
new htmlWebpackPlugin({
hash: true,
template: 'index.html',
inject: 'head',
xhtml: true,
})
]
}
只是把index.html的模板编译到了dist目录下,生成的index.html并没有引入js
已解决!output的filename赋值路径结尾多了个空格导致的,希望大家注意。
webpack深入与实战
86561 学习 · 721 问题
相似问题