Last active
March 19, 2019 20:18
-
-
Save Serginho/8a86989f48ae3b0d76ea4a2ec456dfec to your computer and use it in GitHub Desktop.
Environment base configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// environment.ts configuration | |
export const environment = { | |
production: false, | |
appVersion: '1.0' | |
endpoint: 'mysite.dev/rest', | |
browserSupport: [ | |
{ | |
name: 'Chrome', | |
version: 45 | |
}, | |
{ | |
name: 'Firefox', | |
version: 40 | |
}, | |
{ | |
name: 'Safari', | |
version: 9 | |
} | |
], | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// environment.prod.ts configuration | |
export const environment = { | |
production: true; | |
appVersion: '1.0', | |
endpoint: 'mysite.prod/rest', | |
browserSupport: [ | |
{ | |
name: 'Chrome', | |
version: 45 | |
}, | |
{ | |
name: 'Firefox', | |
version: 40 | |
}, | |
{ | |
name: 'Safari', | |
version: 9 | |
} | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment