const express = require("express"); const app = express(); app.use( express.static("output", { extensions: ["html"], index: "index.html", redirect: true, }) ); app.listen(3000);