From e3902f71c5d1cbdb6ca288205bd2cd89f792f27b Mon Sep 17 00:00:00 2001 From: HongKheng Yap Date: Tue, 16 Jan 2024 09:10:59 +0800 Subject: [PATCH] test: debug hydration errors --- next.config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/next.config.js b/next.config.js index 9920d5d..c3b9870 100644 --- a/next.config.js +++ b/next.config.js @@ -2,6 +2,7 @@ const nextConfig = { reactStrictMode: true, swcMinify: true, + productionBrowserSourceMaps: true, images: { remotePatterns: [ { @@ -9,6 +10,12 @@ const nextConfig = { hostname: 'images.unsplash.com', port: '', pathname: '**' + }, + { + protocol: 'https', + hostname: 'ik.imagekit.io', + port: '', + pathname: '**' } ] }