t2-mapper/scripts/serve-static.ts

10 lines
287 B
TypeScript
Raw Permalink Normal View History

2025-12-02 06:33:12 +00:00
/**
* 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/"));