Merge pull request 'fix: fix prod api url' (!173) from fix/prod into main
All checks were successful
Release / Release (push) Successful in 59s
Release / Build Backend Image (push) Successful in 21s
Release / Build Frontend Image (push) Successful in 28s

Reviewed-on: #173
This commit is contained in:
Constantin Simonis 2025-05-07 19:09:19 +00:00
commit bce3750f34
No known key found for this signature in database
GPG key ID: 944223E4D46B7412

View file

@ -1,5 +1,5 @@
export const environment = { export const environment = {
STRIPE_KEY: STRIPE_KEY:
'pk_test_51QrePYIvCfqz7ANgMizBorPpVjJ8S6gcaL4yvcMQnVaKyReqcQ6jqaQEF7aDZbDu8rNVsTZrw8ABek4ToxQX7KZe00jpGh8naG', 'pk_test_51QrePYIvCfqz7ANgMizBorPpVjJ8S6gcaL4yvcMQnVaKyReqcQ6jqaQEF7aDZbDu8rNVsTZrw8ABek4ToxQX7KZe00jpGh8naG',
apiUrl: 'http://localhost:4200/backend', apiUrl: window.location.origin + '/backend',
}; };