mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 05:23:14 -08:00
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
import express from "express";
|
|
|
|
const app = express();
|
|
const port = 3132;
|
|
|
|
app.use(express.static("../public"));
|
|
app.use('*', express.static("../public"));
|
|
|
|
app.listen(port, () => {
|
|
console.log(`frontend server listening on port ${port}`);
|
|
});
|