diff --git a/webpack.config.js b/webpack.config.js index cc5edf6046..bfd233b586 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -92,7 +92,12 @@ module.exports = { new HtmlWebpackPlugin({ template: './src/vector/index.html', - inject: false, // we inject the links ourselves via the template + + // we inject the links ourselves via the template, because + // HtmlWebpackPlugin wants to put the script tags either at the + // bottom of or the bottom of , and I'm a bit scared + // about moving them. + inject: false, }), ], devtool: 'source-map'