Answers for "adding prod environment file in angular8"

0

adding prod environment file in angular8

content_copy
      
      export const environment = {
  production: false,
  apiUrl: 'http://my-api-url'
};
Posted by: Guest on December-01-2020
0

adding prod environment file in angular8

content_copy
      
      export const environment = {
  production: true,
  apiUrl: 'http://my-prod-url'
};
Posted by: Guest on December-01-2020
0

adding prod environment file in angular8

content_copy
      
      {
  "/api": {
    "target": "http://localhost:3000",
    "secure": false,
    "pathRewrite": {
      "^/api": ""
    }
  }
}
Posted by: Guest on December-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language