enviromental.ts in angular code example
Example 1: adding prod environment file in angular8
content_copy
{
"/api": {
"target": "http://localhost:3000",
"secure": false,
"pathRewrite": {
"^/api": ""
}
}
}
Example 2: adding prod environment file in angular8
content_copy
export const environment = {
production: true,
apiUrl: 'http://my-prod-url'
};