我正在尝试替换index.html中的变量,如下所示:
< meta name ='author'content = $variable>
在配置文件中我使用:
{
test: /index\.html$/,
loader: 'string-replace',
query: {
search: '$variable',
replace: 'stuff to inject',
},
}
在加载器数组中,然后在插件中:
new HtmlWebpackPlugin({
template: conf.path.src('src/index.html'),
inject: true,
})
但是这个设置导致:
错误在./~/html-webpack-plugin/lib/loader.js!./ src / index.html
模块解析失败(…)意外的令牌(1:0)
您可能需要适当的加载程序来处理此文件类型.
您是否有任何想法可能是由此引起的或如何调试?