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

为什么在webpack.config.js里plugin的里面,chunks这个会报错

为什么在webpack.config.js里plugin的里面,chunks这个会报错

正在回答

12 回答

代码:var htmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
    entry:{
        main: './src/script/main.js',
        a: './src/script/a.js',
        b: './src/script/b.js',
        c: './src/script/c.js'
    },//打包的入口 /*['./src/script/main.js','./src/script/a.js'],*/
    output: {
        path: './dist',// 路径
        filename: 'js/[name]-[chunkhash].js',//打包以后的文件名    [name]-[chunkhash] [name]-[hash]
        publicPath: 'https:abc.com'
    },
    plugins:[
        new htmlWebpackPlugin({
            filename: 'a.html',
            template: 'index.html',
            inject: 'body',
            title: 'this is a.html',
            chunks: ['a','main']
        }),

        new htmlWebpackPlugin({
            filename: 'b.html',
            template: 'index.html',
            inject: 'body',
            title: 'this is b.html',
            chunks: ['b']
        }),

        new htmlWebpackPlugin({
            filename: 'c.html',
            template: 'index.html',
            inject: 'body',
            title: 'this is c.html',
            chunks: ['c']
        })
    ]
}

错误:

58af86b80001185105000651.jpg

58af86b9000165bb05000375.jpg


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

晚安里久违的梦乡

我也是,怎么处理?
2017-09-10 回复 有任何疑惑可以回复我~

什么错误啊。。

0 回复 有任何疑惑可以回复我~
首页上一页12下一页尾页

举报

0/150
提交
取消

为什么在webpack.config.js里plugin的里面,chunks这个会报错

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