我无法使用我的文件夹中的图像。我使用<img src="" tag

时间:2019-04-14 20:51:48

标签: webpack

="" 我正在使用webpack 4时出现错误。我无法使用我的图像,尝试时出现每次错误。我也尝试了很多解决方案在网络上,但没有一个成功。这里是我正在使用的配置文件,我真的需要somoene的帮助来使webpack无法理解。

这是错误 错误:子编译失败:   模块解析失败:意外字符'�'(1:0]   您可能需要适当的加载程序来处理此文件类型。   (此二进制文件省略了源代码):   语法错误:意外字符'...'(1:0)

这是配置文件

const HtmlWebPackPlugin = require("html-webpack-plugin");

module.exports =  {
    module: {
        rules:[
            {
               test: /\.html$/,
               use:[
                   {
                       loader:"html-loader",
                       options:{minimize:true}
                   },
               ]
            },
        ]
    },
    plugins: [
        new HtmlWebPackPlugin({
            template:"./src/index.html",
            filename:"./index.html"
        }),
    ]
}



0 个答案:

没有答案