Files
EPEEAIKit/art-agent/frontend/next.config.ts
2026-04-12 01:02:14 +08:00

13 lines
253 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{ protocol: "http", hostname: "localhost" },
{ protocol: "http", hostname: "127.0.0.1" },
],
},
};
export default nextConfig;