次のような 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.
これが原因である可能性があるか、またはこれをどのようにデバッグできますか?