1
0
mirror of https://github.com/vercel/commerce.git synced 2025-06-21 22:41:21 +00:00
vijayakumarv-trika 66d8737fe6
Logo, Favicon and copyrights changed ()
* remove unused imports and localhost added as a local domain

* Logo, Favicon and copyrights changed

* Logo, Favicon and copyrights changed
2021-08-12 17:35:15 +05:30

17 lines
355 B
JavaScript

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