Files
xrlms/next.config.ts

16 lines
258 B
TypeScript
Raw Normal View History

2025-11-15 23:46:47 +09:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
2025-11-18 09:09:09 +09:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "picsum.photos",
},
],
},
2025-11-15 23:46:47 +09:00
};
export default nextConfig;