2026-02-01 22:25:28 +05:30
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-02-07 20:29:50 +05:30
|
|
|
allowedDevOrigins: ["192.168.1.101"],
|
2026-02-04 20:21:33 +05:30
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "img.clerk.com",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2026-02-01 22:25:28 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|