Changes to be committed:
modified: app_sb/src/main/resources/application.yml new file: app_vue/.env.development modified: app_vue/src/components/GetToken_1.vue modified: app_vue/vue.config.js
This commit is contained in:
@ -4,11 +4,11 @@ module.exports = defineConfig({
|
||||
})
|
||||
module.exports={
|
||||
devServer:{
|
||||
port:58610,
|
||||
port: process.env.VUE_APP_PORT,
|
||||
allowedHosts:"all",
|
||||
proxy: {
|
||||
'/examServer': {
|
||||
target: "http://10.128.128.249:8022",
|
||||
target: process.env.SERVER_URL,
|
||||
secure: false,
|
||||
changeOrigin: true,
|
||||
pathRewrite: {
|
||||
@ -16,7 +16,7 @@ module.exports={
|
||||
}
|
||||
},
|
||||
'/springbootServer': {
|
||||
target: "http://localhost:58310",
|
||||
target: `http://localhost:${process.env.SPRINGBOOT_PORT}`,
|
||||
secure: false,
|
||||
changeOrigin: true,
|
||||
pathRewrite: {
|
||||
|
Reference in New Issue
Block a user