为了账号安全,请及时绑定邮箱和手机立即绑定

为什么没有引入编译后的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


正在回答

1 回答

已解决!output的filename赋值路径结尾多了个空格导致的,希望大家注意。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么没有引入编译后的js文件啊?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信