summaryrefslogtreecommitdiff
path: root/storefront/next.config.js
blob: 255e46cff5927dd55e9f490cec64fa370275b37d (plain)
1
2
3
4
5
6
7
8
9
10
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  images: {
    domains: ["localhost", "medusa-public-images.s3.eu-west-1.amazonaws.com"],
  },
}

module.exports = nextConfig