如何使用webpack将主捆绑包嵌入index.html中?

时间:2019-08-27 21:09:24

标签: webpack

Webpack单独生成主捆绑包,并将其链接插入到index.html中。 我如何告诉webpack将此主要捆绑包文件内容插入到index.html中,以便我的index.html本身将成为主要捆绑包?

问题

默认情况下,这是输出:

index.html

<html><body><script src="main.js"></script><body></html>

main.js

console.log("Hello")

我要

index.html (仅一个文件)

<html><body><script>console.log("Hello")</script><body></html>

0 个答案:

没有答案