Compare commits

..

2 Commits

Author SHA1 Message Date
ce5508fe7f build: add apiUrl to environment
Some checks failed
Build and Deploy Angular App / build (push) Failing after 1m29s
2024-07-02 00:49:42 +03:00
4dbcdf658e build: fix configuration 2024-07-02 00:49:26 +03:00
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ jobs:
run: npm install run: npm install
- name: Build Angular app - name: Build Angular app
run: npm run build -- --prod run: npm run build -- --configuration production
- name: Start ssh-agent - name: Start ssh-agent
id: ssh-agent id: ssh-agent

View File

@ -1,5 +1,5 @@
export const environment = { export const environment = {
apiUrl: '', apiUrl: 'https://mirea.winsomnia.net/api',
maxRetry: 3, maxRetry: 3,
retryDelay: 1500 retryDelay: 1500
}; };