super-fit-web-app / next.config.js
next.config.js
Raw
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  images: {
    remotePatterns: [
      {
        protocol: 'https',
        hostname: 's3.us-west-2.amazonaws.com',
        port: '',
      }
    ]
  }
}

module.exports = nextConfig