csdesign-pc-diy-store/next.config.ts
2025-06-22 11:34:32 +08:00

10 lines
183 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [new URL('https://**360buyimg.com/**')],
},
};
export default nextConfig;