Files
verify/frontend/next.config.js
Mohamed Mathar Irfan ed6610d5d8 Initial project upload
2026-07-28 17:57:02 +05:30

7 lines
190 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: { remotePatterns: [{ protocol: "https", hostname: "**" }] },
};
module.exports = nextConfig;