add prod/dev var
All checks were successful
Build and Push Docker Images / build (push) Successful in 2m36s

This commit is contained in:
Rene Kievits
2025-10-20 20:54:38 +02:00
parent 0edd27fb7d
commit 673d29b05f
5 changed files with 12725 additions and 4 deletions

View File

@@ -2,7 +2,14 @@
"hash": "92874bb6",
"configHash": "ae1864eb",
"lockfileHash": "a03ea363",
"browserHash": "85be85d4",
"optimized": {},
"browserHash": "03c64258",
"optimized": {
"vue": {
"src": "../../node_modules/.pnpm/vue@3.5.22_typescript@5.9.3/node_modules/vue/dist/vue.runtime.esm-bundler.js",
"file": "vue.js",
"fileHash": "6b167e91",
"needsInterop": false
}
},
"chunks": {}
}

12704
client/.vite/deps/vue.js Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -86,10 +86,13 @@ export default defineConfig({
server: {
proxy: {
'/api': {
target: 'http://srs-server:3000',
target: process.env.NODE_ENV === 'DEV'
? 'http://srs-server:3000'
: 'http://192.168.0.26:3000',
changeOrigin: true,
secure: false,
},
},
allowedHosts: ['srs.crylia.de', 'localhost']
},
})