webpack <%=%>与excludeChunks能不能同时使用?

来源:3-3 自动化生成项目中的html页面(下)

肥_皂

2017-02-23 16:59

html.js

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<scritp><%= compilation.assets[htmlWebpackPlugin.files.chunks.main.entry.substr(htmlWebpackPlugin.files.publicPath.length)].source() %></scritp>
</body>
</html>

webpack.config.js

var htmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    // 入口文件
    entry: {
        a: './a.js',
        main: './main.js'
    },
    // 出口文件
    output: {
        filename: 'js/[name].js',
        path: './dist'
    },
    // 插件安装
    plugins: [
        new htmlWebpackPlugin({
            filename: 'a.html',
            template: './index.html',
            inject: 'body',
            excludeChunks: ['main']
        })
    ]
};

问题:

<scritp><%= compilation.assets[htmlWebpackPlugin.files.chunks.main.entry.substr(htmlWebpackPlugin.files.publicPath.length)].source() %></scritp>的方式加载的脚本能不能excludeChunks
掉?




写回答 关注

3回答

  • 国旗
    2017-05-12 07:37:12

    接口里用main.entry写的方法,在webpack.config文件中的excludeChunks里就不能把‘main’排除掉

  • 杜新明
    2017-03-04 17:29:52

    可以的

  • Anymore1995
    2017-02-23 19:08:31

    have a try

webpack深入与实战

webpack实战教程,用真实项目带你探索 webpack 强大的功能

86561 学习 · 721 问题

查看课程

相似问题