Closed adardesign closed 3 years ago
Thank you! I get an error when building?
[webpack-cli] /Users/jakoblind/Downloads/empty-project - 2021-07-07T190639.843/webpack.config.js:38 filename: \"index.html\", ^
It generates webpack config that looks like this:
plugins: [ new HtmlWebpackPlugin({ templateContent: ({ htmlWebpackPlugin }) => '<!DOCTYPE html><html><head><meta charset=\"utf-8\"><title>'+htmlWebpackPlugin.options.title+'</title></head><body><div id=\"app\"></div></body></html>', filename: \"index.html\", }),
Think switching from " to ' on the line with filename would fix it.
"
'
filename
@adardesign Do you want to look into this? If you don't have time right now, I could fix it. Want to get this improvement shipped :)
Thanks for your contribution!
Thank you! I get an error when building?
It generates webpack config that looks like this:
Think switching from
"
to'
on the line withfilename
would fix it.