chore: add scripts to be able to start without ssl

- changed target of proxy
This commit is contained in:
tekh 2025-07-22 10:19:36 +02:00
parent df24905a0e
commit 963ab12488
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,8 @@
"version": "4.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --ssl -o",
"start:ssl": "ng serve --ssl -o",
"start": "ng serve -o",
"build": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",

View File

@ -1,6 +1,6 @@
{
"/api": {
"target": "https://localhost:7103",
"target": "https://localhost:7052",
"secure": false,
"changeOrigin": true
}