Bun新版本支持编译为单文件HTML
在 Bun 的下一个版本中
```
bun build --compile --target=browser ./index.html
```
将所有 CSS 和 JS 打包内联到单个独立的 .html 文件中 - 没有外部的 `<script>` 或 `<link>` 标签。一个文件,零依赖。
```
bun build --compile --target=browser ./index.html
```
将所有 CSS 和 JS 打包内联到单个独立的 .html 文件中 - 没有外部的 `<script>` 或 `<link>` 标签。一个文件,零依赖。