-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapp.js
28 lines (25 loc) · 1.01 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* 开店星新零售管理系统
* @description 基于Yii2+Vue2.0+uniapp研发,H5+小程序+公众号全渠道覆盖,功能完善开箱即用,框架成熟易扩展二开
* @author 青岛开店星信息技术有限公司
* @link https://www.kaidianxing.com
* @copyright Copyright (c) 2020-2022 Qingdao ShopStar Information Technology Co., Ltd.
* @copyright 版权归青岛开店星信息技术有限公司所有
* @warning Unauthorized deletion of copyright information is prohibited.
* @warning 未经许可禁止私自删除版权信息
*/
const express = require('express');
const path = require('path');
const fs = require('fs');
const app = express();
// app.get('/', function (req, res) {
// res.send('ok');
// });
app.use(express.static(path.join(__dirname, './dist')));
app.get('*', (req, res) => {
const html = fs.readFileSync(path.resolve(__dirname, './dist/index.html', 'utf-8'));
res.send(html);
});
const server = app.listen(3000, function () {
console.log('listening on port 3000');
});