From bede2dfee7928b1731a68802499f5ee5a7020954 Mon Sep 17 00:00:00 2001 From: Marcin Kwiatkowski Date: Mon, 31 Jan 2022 12:07:47 +0100 Subject: [PATCH] chore(theme): removed redis, sentry and reCaptcha config from nuxt.config.js --- packages/theme/nuxt.config.js | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/packages/theme/nuxt.config.js b/packages/theme/nuxt.config.js index ec7bad0c9..6355c1197 100755 --- a/packages/theme/nuxt.config.js +++ b/packages/theme/nuxt.config.js @@ -113,29 +113,14 @@ export default { 'vue-scrollto/nuxt', '@vue-storefront/middleware/nuxt', '@nuxt/image', - '@nuxtjs/sentry', - '@nuxtjs/recaptcha', ['@vue-storefront/cache/nuxt', { - enabled: process.env.REDIS__ENABLED, + enabled: false, invalidation: { - endpoint: process.env.REDIS__CACHE_INVALIDATE_URL, - key: process.env.REDIS__CACHE_INVALIDATE_KEY, handlers: [ '@vue-storefront/cache/defaultHandler', ], }, driver: [ - // project only start: - '@vsf-enterprise/redis-cache', - { - // docs: https://github.com/luin/ioredis/blob/master/API.md#new-redisport-host-options - redis: { - keyPrefix: process.env.REDIS__KEY_PREFIX, - host: process.env.REDIS__HOST, - port: process.env.REDIS__PORT, - }, - }, - // project only end ], }], ],