8888 port not working on my mac

This commit is contained in:
Captain.B 2020-02-03 15:16:37 +08:00
parent da8e7b101d
commit 253a7da6cc
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
spring.application.name=metersphere spring.application.name=metersphere
server.port=8888 server.port=8081
# Hikari # Hikari
spring.datasource.type=com.zaxxer.hikari.HikariDataSource spring.datasource.type=com.zaxxer.hikari.HikariDataSource

View File

@ -6,7 +6,7 @@ module.exports = {
devServer: { devServer: {
proxy: { proxy: {
['^(?!/login)']: { ['^(?!/login)']: {
target: 'http://localhost:8888', target: 'http://localhost:8081',
ws: true, ws: true,
} }
} }
@ -23,4 +23,4 @@ module.exports = {
filename: "login.html" filename: "login.html"
} }
} }
}; };