📌  相关文章
📜  该脚本具有不受支持的 MIME 类型(“文本 html”). - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:15.785000             🧑  作者: Mango

代码示例2
app.get("/service-worker.js", (req, res) => {
  res.sendFile(path.resolve(__dirname, "public", "service-worker.js"));
});
app.get("*", function response(req, res) {
  res.sendFile(path.join(__dirname, "public", "index.html"));
});