📌  相关文章
📜  该脚本具有不受支持的 mime 类型( - 无论代码示例

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

代码示例1
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"));
});