为什么没有引入编译后的js文件啊?
为什么没有引入编译后的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