diff --git a/backend/src/main/resources/application.properties b/backend/src/main/resources/application.properties index 3fc30a9..e119901 100644 --- a/backend/src/main/resources/application.properties +++ b/backend/src/main/resources/application.properties @@ -1,2 +1,2 @@ -server.port=8080 +server.port=38080 spring.application.name=svn-manager-backend diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 26a4a08..b700ec3 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -6,7 +6,7 @@ export default defineConfig({ plugins: [vue()], server: { proxy: { - '/api': { target: 'http://localhost:8080', changeOrigin: true } + '/api': { target: 'http://localhost:38080', changeOrigin: true } } } })