mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
Merge branch '1.0' of https://github.com/WeBankFinTech/fes.js into 1.0
This commit is contained in:
commit
08e82807f8
@ -17,9 +17,6 @@ module.exports = function createDevServer(port, defaultConfig) {
|
|||||||
|
|
||||||
const app = express();
|
const app = express();
|
||||||
|
|
||||||
// 初始化Mock数据
|
|
||||||
createMock(app);
|
|
||||||
|
|
||||||
const compiler = webpack(defaultConfig);
|
const compiler = webpack(defaultConfig);
|
||||||
|
|
||||||
// devServer 自带支持,添加自定义插件。
|
// devServer 自带支持,添加自定义插件。
|
||||||
@ -43,6 +40,8 @@ module.exports = function createDevServer(port, defaultConfig) {
|
|||||||
}));
|
}));
|
||||||
app.use('/static', express.static('src/static'));
|
app.use('/static', express.static('src/static'));
|
||||||
|
|
||||||
|
// 初始化Mock数据
|
||||||
|
createMock(app);
|
||||||
|
|
||||||
opn(`http://localhost:${port}`);
|
opn(`http://localhost:${port}`);
|
||||||
|
|
||||||
|
@ -15,7 +15,6 @@ const util = require('./util');
|
|||||||
|
|
||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
|
|
||||||
|
|
||||||
// 根据参数个数获取配置
|
// 根据参数个数获取配置
|
||||||
function getOption(arg) {
|
function getOption(arg) {
|
||||||
const len = arg.length;
|
const len = arg.length;
|
||||||
@ -145,9 +144,6 @@ const createMock = function () {
|
|||||||
proxy.on('error', (e) => {
|
proxy.on('error', (e) => {
|
||||||
log.error(e);
|
log.error(e);
|
||||||
});
|
});
|
||||||
proxy.on('proxyReq', (proxyReq) => {
|
|
||||||
proxyReq.setHeader('Host', url.parse(host).host);
|
|
||||||
});
|
|
||||||
process.nextTick(() => {
|
process.nextTick(() => {
|
||||||
router.use((req, res) => {
|
router.use((req, res) => {
|
||||||
proxy.web(req, res, {
|
proxy.web(req, res, {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@webank/fes-cli",
|
"name": "@webank/fes-cli",
|
||||||
"version": "0.4.7",
|
"version": "0.4.8",
|
||||||
"description": "一个好用的前端管理台快速开发框架",
|
"description": "一个好用的前端管理台快速开发框架",
|
||||||
"preferGlobal": true,
|
"preferGlobal": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user