在我的webpack配置中,我使用如下配置的文件加载器:
{
test: /\.html$/,
exclude: [
/(node_modules)/,
/index\.html$/
],
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]'
}
}
]
},
现在,当我尝试导入文件加载程序文档中所述的html文件
import template from './xyz.html'
然后将模板解析为undefined
。
当我使用时可以使用
import * as template from './xyz.html'
,但我宁愿使用文档中的符号。任何想法为什么这不起作用?