commerce/framework/elasticpath/next.config.js
2021-08-03 12:15:28 +05:30

16 lines
327 B
JavaScript

const commerce = require('./commerce.config.json')
module.exports = {
commerce,
images: {
domains: ['s3-eu-west-1.amazonaws.com'],
},
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.fallback.fs = false;
config.resolve.fallback.constants = false;
}
return config;
}
}