Files
AOUN/next.config.ts
2025-11-27 17:50:44 +08:00

21 lines
365 B
TypeScript

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