问答详情
源自:2-1 建立项目的 webpack 配置文件

htmlWebpackPlugin is undefined,一旦用了<%=%>就报这个错

htmlWebpackPlugin is undefined,一旦用了<%=%>就报这个错,不用的时候是可以运行的

提问者:woshilyy 2018-08-02 15:42

个回答

  • 慕粉3914329
    2018-08-03 18:56:54

    plugins:[
        new HtmlWebpackPlugin({
           chunks:['index'], //添加引入的js,也就是entry中的key
           hash:true, //向html引入的src链接后面增加一段hash值,消除缓存
            title:'I love China',
           template:'./dist/index.html'
        })
    ]

    要定义这个plugin节点吧