mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-21 00:51:45 +03:00
16 lines
327 B
TypeScript
16 lines
327 B
TypeScript
// static server for web app
|
|
import express from 'express';
|
|
const app = express();
|
|
|
|
const PORT = process.env.PORT || 8080;
|
|
|
|
app.use('/', express.static('dist'));
|
|
|
|
app.get('/*', (req, res) => {
|
|
res.sendFile('index.html', { root: 'dist' });
|
|
});
|
|
|
|
app.listen(PORT, () => {
|
|
console.log(`Server is running on port ${PORT}`);
|
|
});
|