Skip to content

Instantly share code, notes, and snippets.

@BartoszBilejczyk
Created January 20, 2021 10:25
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/af9a1f81ef1f49585cab70be3e41022e to your computer and use it in GitHub Desktop.
Save BartoszBilejczyk/af9a1f81ef1f49585cab70be3e41022e to your computer and use it in GitHub Desktop.
// index.html
<link rel="icon" href="<%= BASE_URL %>favicon/<%= process.env.VUE_APP_DEV_PRODUCT %>.ico">
// components
const imagePath = computed(() => {
return require(`./assets/product-specific/${process.env.VUE_APP_DEV_PRODUCT}/illustration.png`);
});
const logoPath = computed(() => {
return require(`./assets/product-specific/${process.env.VUE_APP_DEV_PRODUCT}/logo.svg`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment