Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄庭坚
jinfa-platform
Commits
2582e6fe
Commit
2582e6fe
authored
Sep 02, 2020
by
前端-许佳敏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
构建脚本
parent
668eafb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
devServer.js
scripts/devServer.js
+6
-2
No files found.
scripts/devServer.js
View file @
2582e6fe
...
@@ -3,18 +3,22 @@
...
@@ -3,18 +3,22 @@
*
*
*/
*/
// 如需在jenkins上进行构建, 可通过后续参数进行指定端口和代理api
//express模块
//express模块
var
express
=
require
(
"express"
);
var
express
=
require
(
"express"
);
var
app
=
express
();
var
app
=
express
();
const
path
=
require
(
'path'
)
const
path
=
require
(
'path'
)
const
{
createProxyMiddleware
}
=
require
(
'http-proxy-middleware'
)
const
{
createProxyMiddleware
}
=
require
(
'http-proxy-middleware'
)
const
port
=
4396
const
port
=
process
.
argv
[
2
]
||
4396
const
apiProxyTarget
=
process
.
argv
[
3
]
||
'http://10.0.0.25:8100'
// 用于解决刷新后404问题
// 用于解决刷新后404问题
var
history
=
require
(
'connect-history-api-fallback'
);
var
history
=
require
(
'connect-history-api-fallback'
);
app
.
use
(
'/api'
,
createProxyMiddleware
(
app
.
use
(
'/api'
,
createProxyMiddleware
(
{
{
target
:
'http://10.0.0.25:8100'
,
target
:
apiProxyTarget
,
changeOrigin
:
true
,
changeOrigin
:
true
,
pathRewrite
:
{
'^/api'
:
''
}
pathRewrite
:
{
'^/api'
:
''
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment