Files
openclaw-mission-control/frontend/next.config.ts
2026-02-06 01:56:35 +05:30

18 lines
279 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
allowedDevOrigins: [
"192.168.1.101",
],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "img.clerk.com",
},
],
},
};
export default nextConfig;