adding prod environment file in angular8

Solutions on MaxInterview for adding prod environment file in angular8 by the best coders in the world

showing results for - "adding prod environment file in angular8"
Edoardo
17 Jan 2019
1      
2        content_copy
3      
4      export const environment = {
5  production: false,
6  apiUrl: 'http://my-api-url'
7};
8    
Facundo
10 Sep 2018
1      
2        content_copy
3      
4      export const environment = {
5  production: true,
6  apiUrl: 'http://my-prod-url'
7};
8    
Cruz
28 Apr 2016
1      
2        content_copy
3      
4      {
5  "/api": {
6    "target": "http://localhost:3000",
7    "secure": false,
8    "pathRewrite": {
9      "^/api": ""
10    }
11  }
12}
13