mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 13:28:28 +01:00
add /static dir for js files owo
This commit is contained in:
parent
52cebeb965
commit
b0591974c8
1 changed files with 42 additions and 32 deletions
|
@ -88,7 +88,17 @@ app.get("/css/:id", (req, res) => {
|
||||||
// Serve the original file
|
// Serve the original file
|
||||||
res.sendFile(req.params.id, { root: html_location });
|
res.sendFile(req.params.id, { root: html_location });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (req.params.id.endsWith(".js")) {
|
||||||
|
res.redirect("/static/" + req.params.id);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
app.get("/static/:id", (req, res) => {
|
||||||
|
if (req.params.id.endsWith(".css")) {
|
||||||
|
res.redirect("/css/" + req.params.id);
|
||||||
|
}
|
||||||
|
|
||||||
|
res.sendFile(req.params.id, { root: html_location });
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue