Angular Vendor Setup
Follow these steps for initial setup and running your angular vendor application.
npm install npm install --forceexport const environment = {
production: false,
baseUrl: '<Your API base url>', // eg:'http://localhost:9000/backend/api/'
imageUrl: '<Your API url for image resize>', // eg:'http://localhost:9000/backend/api/media/image-resize'
productUrl: '<Your store base url>', // eg:'http://yourip.com/'
pluginUrl: '<Your API url>' // eg:'http://yourip.com/'
};ng serve
Last updated