Skip to content
  • This project
    • Loading...
  • Sign in

sujata / Akruti-Frontend

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Registry
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Akruti-Frontend
  • next.config.mjs
  • Ravindra Kanojiya's avatar
    image issue solved · 23573c97
    Ravindra Kanojiya committed 2026-01-16 17:18:03 +0530
    23573c97 Browse Files
next.config.mjs 315 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  images: {
    remotePatterns: [
      {
        protocol: "http",
        hostname: "localhost",
      },
      {
        protocol: "http",
        hostname: "158.69.0.202",
      },
    ],
  },
};

export default nextConfig;