From c5f25906a3001d126d574057bdb76c10e26c26b1 Mon Sep 17 00:00:00 2001 From: GunaTrika Date: Tue, 28 Sep 2021 18:24:43 +0530 Subject: [PATCH] Fixing image url attempt #6 --- framework/elasticpath/next.config.js | 5 +---- next-env.d.ts | 3 +++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/framework/elasticpath/next.config.js b/framework/elasticpath/next.config.js index bc60cebb2..81be4f355 100644 --- a/framework/elasticpath/next.config.js +++ b/framework/elasticpath/next.config.js @@ -11,7 +11,7 @@ module.exports = { }, commerce, i18n: { - locales: ['en-US', 'es'], + locales: ['en-US'], defaultLocale: 'en-US', }, webpack: (config, { isServer }) => { @@ -22,6 +22,3 @@ module.exports = { return config; } }; - -// Don't delete this console log, useful to see the commerce config in Vercel deployments -console.log('next.config.js', JSON.stringify(module.exports, null, 2)) \ No newline at end of file diff --git a/next-env.d.ts b/next-env.d.ts index 7b7aa2c77..3db3c4df2 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,2 +1,5 @@ /// /// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information.