diff --git a/.gitignore b/.gitignore index e68cfcd..bf212dc 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,7 @@ build/ # Downloaded data files data/* !data/*.csv -!data/background.png +!data/*.png # Configuration config.json diff --git a/data/background.png b/data/modelviewer-background-transparent.png similarity index 100% rename from data/background.png rename to data/modelviewer-background-transparent.png diff --git a/data/modelviewer-background.png b/data/modelviewer-background.png new file mode 100644 index 0000000..53c973b Binary files /dev/null and b/data/modelviewer-background.png differ diff --git a/src/armory/Armory.ts b/src/armory/Armory.ts index 33334ea..dc94a85 100644 --- a/src/armory/Armory.ts +++ b/src/armory/Armory.ts @@ -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)));