Angular Store Front
Follow this step-by-step guide for initial setup of your Angular Storefront and to run your application.
Initial Setups
npm installnpm install --forceexport 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'
};Now, Run your Application
ng serveLast updated