0

我已经html-loader在我的 Webpack 配置文件上实现了:

module: {
    rules: [
        {
            test: /\.html$/i,
            exclude: /(node_modules)/,
            use: ['html-loader'],
        },
    ]
}

当我尝试使用以下行运行 webpack dev-serverindex.js

import html from  `./app/components/auth/auth.html`;

它返回以下错误: 在此处输入图像描述

我试图记录所有被扫描的文件,似乎 Webpack 甚至没有检查appsrc文件夹中的整个目录:

{
    test: (path) => {
        console.log(path)
        return /\.html$/i.test(path)
    },
    exclude: /(node_modules)/,
    use: ['html-loader'],
},

唯一打印的 HTML 文件是index.html,它位于webpack文件所在的目录中。

我的目录:

在此处输入图像描述

4

0 回答 0