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: '**' } ] }