Angular Store Front
You can use this step-by-step guide for Front End Deployment Setup.
For Initial Angular Storefront Setup and to run the application, refer to Angular Storefront Setup under Development and Setup.
Build your application in Development Mode
export const environment = {
production: false,
storeUrl: '<Your API Base url>', // eg: 'http:/localhost:8000/backend/api/'
imageUrl:'<Your API url for image resize>', // eg: 'http:/localhost:8000/backend/api/media/image-resize'
};ng build --configuration developmentFor SSR in Development (Server Side Rendering)
npm run dev-build:ssr && npm run serve:ssr
http://localhost:4000
Build your application in QA Mode
For SSR in QA (Server Side Rendering)
Build your application in Production Mode
For SSR in Production (Server Side Rendering)
Last updated