Fetch the repository succeeded.
This action will force synchronization from 开店星开源商城/开店星公众版-后台Vue源码, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
/**
* 开店星新零售管理系统
* @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');
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。