summaryrefslogtreecommitdiff
path: root/storefront/next.config.js
diff options
context:
space:
mode:
authorertopogo <erwin.t.pombett@gmail.com>2026-01-18 20:32:59 +0100
committerertopogo <erwin.t.pombett@gmail.com>2026-01-18 20:32:59 +0100
commit09a949092c59856962e4a7d132bc5a5e76fe5e55 (patch)
tree990d6b8f24ff9c6dbc0fcb15b5512067d09b17fd /storefront/next.config.js
Initial commit: Medusa Backend + storefront + config
Diffstat (limited to 'storefront/next.config.js')
-rw-r--r--storefront/next.config.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/storefront/next.config.js b/storefront/next.config.js
new file mode 100644
index 0000000..255e46c
--- /dev/null
+++ b/storefront/next.config.js
@@ -0,0 +1,10 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {
+ reactStrictMode: true,
+ images: {
+ domains: ["localhost", "medusa-public-images.s3.eu-west-1.amazonaws.com"],
+ },
+}
+
+module.exports = nextConfig
+