Front End Angular Vendor Setup

Refer to this step-by-step guide for building your Angular Vendor.

Once you have finished your initial Angular vendor setup (Refer to Angular vendor Setup under Development and Setup), you can now build and deploy your Angular Admin.

Follow these steps while building the application in production mode → src→ environments → environment.prod.ts

Step: 1 - Place your base url in storeUrl = ‘’; (for eg : “http://localhost:9000/api/”)

Step:2 - Place your imageurl in imageUrl = ””; (for eg : “http://localhost:9000/api/media/image-resize”)

Step:3 - To build your application run the following command

ng build – prod

Last updated