要在 Bun 中将 .html
文件作为文本文件导入,请在 import 语句中使用 type: "text"
属性。
import html from "./file.html" with { type: "text" };
console.log(html); // <!DOCTYPE html><html><head>...
...`).then(()=>{clicker.querySelector(".clipboard").classList.add("hidden");clicker.querySelector(".check").classList.remove("hidden");setTimeout(()=>{clicker.querySelector(".clipboard").classList.remove("hidden");clicker.querySelector(".check").classList.add("hidden")},2500)})})});
这也可以与热模块重载和/或观察模式一起使用,以强制 Bun 在 ./file.html
文件更改时重新加载。
此功能在 Bun v1.1.5 中添加。