modified: server/server.js

This commit is contained in:
IrisVega 2024-07-11 16:59:46 +08:00
parent 043c0a922a
commit de67edeb4e
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ const bodyParser = require('body-parser');
const cors = require('cors');
const path = require('path');
const app = express();
const port = 8080;
const port = 4040;
app.use(bodyParser.json());
app.use(cors());
@ -67,5 +67,5 @@ app.get('*', (req, res) => {
});
app.listen(port, () => {
console.log(`服务器在 http://localhost:${port} 上运行`);
console.log(`服务器在 http://0.0.0.0:${port} 上运行`);
});