mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
97e4eab7bb
Split express into different ports for easier migration Typed page ops that had warnings
13 lines
354 B
JavaScript
13 lines
354 B
JavaScript
import express from 'express';
|
|
const app = express();
|
|
const PORT = 80;
|
|
|
|
// Server Frontend TODO: Make this typescript compatible
|
|
app.use(express.static('../client-vanilla/public'));
|
|
app.use(express.static('../shared-operations'));
|
|
|
|
// serve
|
|
app.listen(PORT, function (err) {
|
|
if (err) console.log(err);
|
|
console.log(`http://localhost:${PORT}`);
|
|
}); |