我正在尝试替换 index.html 中的变量,如下所示:
<meta name='author' content=$variable>
在我使用的配置文件中:
{
test: /index\.html$/,
loader: 'string-replace',
query: {
search: '$variable',
replace: 'stuff to inject',
},
}
在loaders
数组中,然后在plugins
:
new HtmlWebpackPlugin({
template: conf.path.src('src/index.html'),
inject: true,
})
但是这个设置会导致:
ERROR in ./~/html-webpack-plugin/lib/loader.js!./src/index.html
Module parse failed (...) Unexpected token (1:0)
You may need an appropriate loader to handle this file type.
你有什么想法这可能是由什么引起的,或者我该如何调试?