rename bundled to dist, caught by gitignore

This commit is contained in:
f0x 2022-06-06 03:04:30 +02:00
commit e9b02b6039
12 changed files with 6 additions and 1860 deletions

View file

@ -49,7 +49,7 @@ app.use("/assets", express.static("../assets/"));
if (process.env.NODE_ENV != "development") {
console.log("adding static asset route");
app.use(express.static("../assets/bundled"));
app.use(express.static("../assets/dist"));
}
module.exports = app;