首页 文章

Webpack,html-webpack-plugin,错误:子编译失败

提问于
浏览
8

我've got a problem with my webpack configuration. After implementing html-webpack-plugin I got an Error, there'的生成 index.html 的整个错误堆栈 .

错误堆栈:Html Webpack插件:

Error: Child compilation failed:
  Conflict: Multiple assets emit to the same filename index.html:
  Error: Conflict: Multiple assets emit to the same filename index.html 

 
 compiler.js:76 
[Pre-build]/[html-webpack-plugin]/lib/compiler.js:76:16 
 Compiler.js:291 Compiler.
[Pre-build]/[webpack]/lib/Compiler.js:291:10 
 Compiler.js:494 
[Pre-build]/[webpack]/lib/Compiler.js:494:13 
 Tapable.js:138 next
[Pre-build]/[tapable]/lib/Tapable.js:138:11 
 CachePlugin.js:62 Compiler.
[Pre-build]/[webpack]/lib/CachePlugin.js:62:5 
 Tapable.js:142 Compiler.applyPluginsAsyncSeries
[Pre-build]/[tapable]/lib/Tapable.js:142:13 
 Compiler.js:491 
[Pre-build]/[webpack]/lib/Compiler.js:491:10 
 Tapable.js:131 Compilation.applyPluginsAsyncSeries
[Pre-build]/[tapable]/lib/Tapable.js:131:46 
 Compilation.js:645 self.applyPluginsAsync.err
[Pre-build]/[webpack]/lib/Compilation.js:645:19 
 Tapable.js:131 Compilation.applyPluginsAsyncSeries
[Pre-build]/[tapable]/lib/Tapable.js:131:46 
 Compilation.js:636 self.applyPluginsAsync.err
[Pre-build]/[webpack]/lib/Compilation.js:636:11 
 Tapable.js:131 Compilation.applyPluginsAsyncSeries
[Pre-build]/[tapable]/lib/Tapable.js:131:46 
 Compilation.js:631 self.applyPluginsAsync.err
[Pre-build]/[webpack]/lib/Compilation.js:631:10 
 Tapable.js:131 Compilation.applyPluginsAsyncSeries
[Pre-build]/[tapable]/lib/Tapable.js:131:46 
 Compilation.js:627 sealPart2
[Pre-build]/[webpack]/lib/Compilation.js:627:9 
 Tapable.js:131 Compilation.applyPluginsAsyncSeries
[Pre-build]/[tapable]/lib/Tapable.js:131:46 
 Compilation.js:575 Compilation.seal
[Pre-build]/[webpack]/lib/Compilation.js:575:8 
 Compiler.js:488 
[Pre-build]/[webpack]/lib/Compiler.js:488:16 
 Tapable.js:225 
[Pre-build]/[tapable]/lib/Tapable.js:225:11 
 Compilation.js:477 _addModuleChain
[Pre-build]/[webpack]/lib/Compilation.js:477:11 
 Compilation.js:448 processModuleDependencies.err
[Pre-build]/[webpack]/lib/Compilation.js:448:13 
 next_tick.js:73 _combinedTickCallback
internal/process/next_tick.js:73:7 
 next_tick.js:104 process._tickCallback
internal/process/next_tick.js:104:9

我的webpack配置代码:

var webpack = require('webpack'),
    path = require('path');


var CopyWebpackPlugin = require('copy-webpack-plugin'),
    ExtractTextWebpackPlugin = require('extract-text-webpack-plugin'),
    HtmlWebpackPlugin = require('html-webpack-plugin'),

const sourcePath = path.resolve(__dirname, './src');
const staticPath = path.resolve(__dirname, './static');

module.exports = function (env) {

    const nodeEnv = env && env.prod ? 'production' : 'development';
    const isProd = nodeEnv === 'production';

    const postcssLoader = {
        loader: 'postcss-loader',
        options: {
            plugins: function () {
                return [
                    require('autoprefixer')
                ];
            }
        }
    }

    const plugins = [
        new webpack.optimize.CommonsChunkPlugin({
            name: 'vendor',
            minChunks: Infinity,
            filename: 'vendor.bundle.js'
        }),
        new webpack.EnvironmentPlugin({
            NODE_ENV: nodeEnv,
        }),
        new HtmlWebpackPlugin({
            template: 'index.html',
            minify: {
                removeComments: true,
                collapseWhitespace: true,
                removeAttributeQuotes: true
            },
            chunksSortMode: 'dependency'
        })
    ];

    if(isProd) {
        plugins.push(
            new webpack.LoaderOptionsPlugin({
                minimize: true,
                debug: false
            }),
            new webpack.optimize.UglifyJsPlugin({
                compress: {
                    warnings: false,
                    screw_ie8: true,
                    conditionals: true,
                    unused: true,
                    comparisons: true,
                    sequences: true,
                    dead_code: true,
                    evaluate: true,
                    if_return: true,
                    join_vars: true,
                },
                output: {
                    comments: false,
                },
            })
        );
    } else {
        plugins.push(
            new webpack.HotModuleReplacementPlugin()
        );
    }

    return {
        devtool: isProd? 'source-map' : 'eval',
        context: sourcePath,

        entry: {
            app: './app/entry.ts',
            vendor: './app/vendor.ts'
        },

        output: {
            path: staticPath,
            filename: '[name].bundle.js',
        },

        module: {
            rules: [
                {
                    test: /\.html$/,
                    exclude: /node_modules/,
                    use: {
                        loader: 'file-loader',
                        query: {
                            name: '[name].[ext]'
                        },
                    },
                },
                {
                    test: /\.css$/,
                    exclude: /node_modules/,
                    use: [
                        'style-loader',
                        'css-loader',
                        'postcss-loader'
                    ]
                },
                {
                    test: /\.scss$/,
                    exclude: /node_modules/,
                    use: [
                        'style-loader',
                        'css-loader',
                        'postcss-loader',
                        'sass-loader'
                    ]
                },
                {
                    test: /\.ts$/,
                    exclude: /node_modules/,
                    use: [
                        'ts-loader'
                    ],
                },
            ],
        },

        resolve: {
            alias: {
                Public: path.resolve(__dirname,'src/public'),
                Style: path.resolve(__dirname,'src/styles')
            },
            extensions: ['.ts','.js', '.html'],
            modules: [
                path.resolve(__dirname, 'node_modules'),
                sourcePath
            ]
        },

        plugins,

        performance: isProd && {
            maxAssetSize: 100,
            maxEntrypointSize: 300,
            hints: 'warning'
        },

        stats: {
            colors: {
                green: '\u001b[32m'
            }
        },

        devServer: {
            contentBase: './src',
            historyApiFallback: true,
            port: 3000,
            compress: isProd,
            inline: !isProd,
            hot: !isProd,
            stats: {
                assets: true,
                children: false,
                chunks: false,
                hash: false,
                modules: false,
                publicPath: false,
                timings: true,
                version: false,
                warnings: true,
                color: {
                    green: '\u001b[32m'
                }
            },
        }
    };
};

我找不到任何错误的来源,也许我有点累,但我想完成它,所以我希望你的帮助 .

也许我应该使用一些 raw-loader 加载 .html (?),这不会让我开心 .

1 回答

  • 8

    问题确实是 file-loader ,因为它只是复制文件 . 当 html-webpack-plugin 尝试写 index.html 时,它已经被 file-loader 写入,因此导致冲突 .

    有几种方法可以解决该问题,具体取决于您的需求 .

    您可以将html-loader用于HTML,但如果您希望简单地复制导入的HTML,那么't the correct choice. To be clear, by the imported HTML I don' t表示 html-webpack-plugin 使用的模板 .

    如果要继续将 file-loader 用于其他HTML文件,可以排除 index.html ,以便 html-webpack-plugin 回退到其默认加载器 . require.resolve 的作用类似于 require 但是为您提供了模块的完整路径而不是其内容 .

    {
        test: /\.html$/,
        exclude: [/node_modules/, require.resolve('./index.html')],
        use: {
            loader: 'file-loader',
            query: {
                name: '[name].[ext]'
            },
        },
    },
    

    当没有加载器与模板匹配时, html-webpack-plugin 使用ejs loader as a fallback . 如果您不需要任何 .html 文件的加载器,您可以完全删除该规则,它可以正常工作 . 这是不太可能的,否则您首先不会有 .html 规则,但这也意味着您可以使用 .ejs 扩展名来不应用 .html 规则,因为所有HTML都有效EJS . 您可以将 index.html 重命名为 index.ejs 并相应地更改您的插件配置:

    new HtmlWebpackPlugin({
        template: 'index.ejs',
        minify: {
            removeComments: true,
            collapseWhitespace: true,
            removeAttributeQuotes: true
        },
        chunksSortMode: 'dependency'
    })
    

相关问题