我已经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 甚至没有检查app
我src
文件夹中的整个目录:
{
test: (path) => {
console.log(path)
return /\.html$/i.test(path)
},
exclude: /(node_modules)/,
use: ['html-loader'],
},
唯一打印的 HTML 文件是index.html
,它位于webpack
文件所在的目录中。