|
|
|
@ -5,7 +5,7 @@ const cors = require('cors');
|
|
|
|
|
const bodyParser = require('body-parser');
|
|
|
|
|
|
|
|
|
|
const app = express();
|
|
|
|
|
const port = 8081; // 可以根据需要修改端口号
|
|
|
|
|
const port = 3000; // 可以根据需要修改端口号
|
|
|
|
|
app.use(cors());
|
|
|
|
|
|
|
|
|
|
app.use(bodyParser.json());
|
|
|
|
@ -46,14 +46,6 @@ app.post('/createShortcut', (req, res) => {
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 静态文件服务,指定 dist 目录为静态文件目录
|
|
|
|
|
app.use(express.static(path.join(__dirname, 'dist')));
|
|
|
|
|
|
|
|
|
|
// 所有请求都返回 index.html 文件,让前端路由处理页面跳转
|
|
|
|
|
app.get('*', function(req, res) {
|
|
|
|
|
res.sendFile(path.join(__dirname, 'dist', 'index.html'));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 运行项目 需要进入到当前的文件夹目录打开终端 执行 node nodeService.js
|
|
|
|
|
app.listen(port, () => {
|
|
|
|
|
console.log(`Server is running on port ${port}`);
|
|
|
|
|