feat(character): replace model viewer background

This commit is contained in:
Axel Cocat 2022-03-18 00:51:33 +01:00
parent 4d0fced53b
commit 7315de7ede
4 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@ export class Armory {
app.use("/data/meta", express.static(`data/meta`));
app.use("/data/bone", express.static(`data/bone`));
app.use("/data/textures", express.static(`data/textures`));
app.use("/data/background.png", express.static(`data/background.png`));
app.use("/data/background.png", express.static(`data/modelviewer-background.png`));
const indexController = new IndexController(this);
app.get("/", this.wrapRoute(indexController.index.bind(indexController)));