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.