add IFL texture animation

This commit is contained in:
Brian Beck 2025-12-01 22:33:12 -08:00
parent 25449af198
commit af17b43584
2506 changed files with 393603 additions and 6536 deletions

9
scripts/serve-static.ts Normal file
View file

@ -0,0 +1,9 @@
/**
* Serve the `/docs` folder from `/t2-mapper` on localhost, for testing
* production builds locally.
*/
import express from "express";
const app = express();
app.use("/t2-mapper", express.static("./docs"));
app.listen(3000, () => console.log("http://localhost:3000/t2-mapper/"));