要在 Bun 中将 .html
文件作为文本文件导入,请在 import 语句中使用 type: "text"
属性。
import html from "./file.html" with { type: "text" };
console.log(html); // <!DOCTYPE html><html><head>...
这也可以与热模块重新加载和/或监视模式一起使用,以强制 Bun 在 ./file.html
文件发生更改时重新加载。
此功能已添加到 Bun v1.1.5 中。