Files
do-you-like-me/index.js
2025-02-18 22:02:17 +02:00

15 lines
350 B
JavaScript

const express = require('express');
const path = require('path');
const app = express();
const PORT = process.env.PORT || 6969;
// Serve the HTML file for any route
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'index.html'));
});
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});