This commit is contained in:
WangXinghao
2025-11-05 12:24:30 +08:00
parent da90aa774a
commit 0e83eddc23

View File

@@ -1,6 +1,6 @@
import express from 'express';
const app = express();
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 8080;
app.get('/', (_req, res) => {
res.send('Hello, TypeScript + Express!');