Skip to content

Instantly share code, notes, and snippets.

@BartoszBilejczyk
Last active January 20, 2021 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BartoszBilejczyk/aca4bdced041ad3185d0ede5b5427a62 to your computer and use it in GitHub Desktop.
Save BartoszBilejczyk/aca4bdced041ad3185d0ede5b5427a62 to your computer and use it in GitHub Desktop.
// config/product-specific/styling.js
module.exports = () => {
switch (process.env.VUE_APP_DEV_PRODUCT) {
case 'google':
return '_variables-google';
case 'amazon':
return '_variables-amazon';
case 'facebook':
return '_variables-facebook';
default:
return '_variables-google';
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment