Skip to content

Commit

Permalink
Fixed Https keys not being referenced (#391)
Browse files Browse the repository at this point in the history
Co-authored-by: Vishal <[email protected]>
Co-authored-by: tumms2021389 <[email protected]>
  • Loading branch information
3 people authored Dec 9, 2024
1 parent 122555f commit 9942906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"build:prod": "npm run _internal-check-node-version && run-p -l fix _internal-build-prod-only",
"build:prod:ci": "npm run _internal-check-node-version && npm run clean && npm run _internal-install-sdk && npm run build:prod",
"start-dev": "ng serve --port 3500",
"start-dev-https": "ng serve --port 3500 --ssl --ssl-key private.key --ssl-cert private.pem",
"start-dev-https": "ng serve --port 3500 --ssl --ssl-key ./keys/sdk-a.key --ssl-cert ./keys/sdk-a.crt",
"start-prod": "http-server ./dist -c-1 --port 3500 --gzip --brotli --cors --proxy http://localhost:3500?",
"start-prod-https": "http-server ./dist -c-1 --ssl --cert private.pem --key private.key --port 3500 --gzip --brotli --cors --proxy https://localhost:3500?",
"start-prod-https": "http-server ./dist -c-1 --ssl --cert ./keys/sdk-a.crt --key ./keys/sdk-a.key --port 3500 --gzip --brotli --cors --proxy https://localhost:3500?",
"clean": "echo \"cleaning...\" && npx shx --yes rm -rf ./dist/** ./node_modules ./.angular/cache",
"lint": "run-p -cl lint:*",
"lint:es": "eslint --color --cache --cache-location node_modules/.cache/eslint/ src",
Expand Down

0 comments on commit 9942906

Please sign in to comment.