Files
xrlms/next.config.ts
2025-11-18 09:09:09 +09:00

16 lines
258 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: "https",
hostname: "picsum.photos",
},
],
},
};
export default nextConfig;