Skip to content

Commit db2c60c

Browse files
author
Marcin Kwiatkowski
committed
feat: added nuxt-img and possibility to use external image providers (#467)
* chore(theme): added nuxt-image * feat(theme): added nuxt-img to category page * feat: added nuxt-img to category pages, added newe configs, and useImage compoosable * feat(theme): added nuxt-img to products carousel, added image enums * feat(theme): added nuxt-img for search results * feat(theme): added nuxt-img to my account wishlist * feat(theme): changed log to use nuxt-img * feat(theme): changed empty cart icon to use nuxt-img * feat(theme): added nuxt-img to instagram feed, updated image names * feat(theme): changed error image on search results to use nuxt-img * feat(theme): update store switcher to use nuxt-img instead of SfImage * feat(theme): added nuxt-img to wishlist sidebar * feat(theme): added nuxt-img to MobileStoreBanner * feat(theme): added nuxt-img to grouoped product selector * feat(theme): added nuxt-img to payment component * docs: added docs for external images providers * build(cloud): updated vuestorefront cloud docker file and added new args * build: updated deploy gh action to add image env vatiables * docs(configuration): updated docs for image providers * build: added missed buildargs * build: fixed dockerfile * build: fixed typo in docker file * build: updated config * test: add unit tests for the useImage composable
1 parent 6ff608b commit db2c60c

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

packages/theme/config/example.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"recaptchaSecretkey": "{YOUR_RECAPTCHA_SECRET_KEY}",
1616
"recaptchaVersion": "{YOUR_RECAPTCHA_VERSION}",
1717
"recaptchaMinScore": "{YOUR_RECAPTCHA_MIN_SCORE}"
18-
}
18+
}

packages/theme/pages/Category.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ import cacheControl from '~/helpers/cacheControl';
438438
import { useAddToCart } from '~/helpers/cart/addToCart';
439439
import CategorySidebarMenu from '~/components/Category/CategorySidebarMenu';
440440
441+
441442
// TODO(addToCart qty, horizontal): https://github.com/vuestorefront/storefront-ui/issues/1606
442443
export default defineComponent({
443444
name: 'CategoryPage',

packages/theme/pages/Checkout/Payment.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ import { useImage } from '~/composables';
184184
import { removeItem } from '~/helpers/asyncLocalStorage';
185185
import { isPreviousStepValid } from '~/helpers/checkout/steps';
186186
187+
187188
export default defineComponent({
188189
name: 'ReviewOrderAndPayment',
189190
components: {

0 commit comments

Comments
 (0)