Theming Your App

Our demo app consists of two type of variant - a) Grocery b) Fashion

Open src/app/envioronments/envioronment.ts file and src/app/envioronments/envioronment.prod.ts file to change major theming and component options.

export const environment = {
  production: false,
  
  ...grocery_app
};

For fashion app replace the variable with fashion_app.

Last updated