fix: save and send cookie in dev setup

This commit is contained in:
eneller
2026-03-08 20:39:04 +01:00
parent c9a2cd8d66
commit 80529225c7
6 changed files with 24 additions and 12 deletions

View File

@@ -65,6 +65,9 @@
"defaultConfiguration": "production"
},
"serve": {
"options": {
"proxyConfig": "proxy.json"
},
"builder": "@angular/build:dev-server",
"configurations": {
"production": {

8
client/proxy.json Normal file
View File

@@ -0,0 +1,8 @@
{
"/api": {
"target": "http://localhost:3000",
"secure": false,
"changeOrigin": true,
"withCredentials": true
}
}

View File

@@ -7,7 +7,7 @@ import Transaction from '@model/transaction'
providedIn: 'root',
})
export class APIService {
private apiUrl = 'http://localhost:3000/api'
private apiUrl = 'http://localhost:4200/api'
private isAuthenticatedSubject = new BehaviorSubject<boolean>(false);
isAuthenticated$ = this.isAuthenticatedSubject.asObservable();