Есть ли способ сделать так, чтобы веб-пакет вставлял вывод в HTML вместо отдельного файла?
<html> <head> </head> <body> <script type="text/javascript"> // webpack puts the output here </script> </body> </html>
Мне пришлось использовать html-webpack-inline-source-plugin.https://github.com/DustinJackson/html-webpack-inline-source-plugin
html-webpack-inline-source-plugin
plugins: [ new HtmlWebpackPlugin({ inlineSource: '.(js|css)$' // embed all javascript and css inline }), new HtmlWebpackInlineSourcePlugin() ]