Initial commit

This commit is contained in:
2026-08-06 19:09:38 +02:00
commit 73f746db5c
6 changed files with 1007 additions and 0 deletions

12
server.js Normal file
View File

@@ -0,0 +1,12 @@
const express = require('express');
const { join } = require('path');
const app = express();
app.get('/fonts/arcadeclassic.woff', (req, res) =>
res.sendFile(join(__filename, '..', 'static', 'fonts', 'arcadeclassic.woff'))
)
app.use((req, res) =>
res.sendFile(join(__filename, '..', 'static', 'index.html'))
)
app.listen(4151, () => {
console.log('Server is running on http://localhost:4151')
})