rln.waku.org/next.config.ts
2025-04-18 13:36:29 +05:30

15 lines
243 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
domains: [
'waku.org',
'logos.co',
'contributors.free.technology'
],
},
reactStrictMode: true,
}
module.exports = nextConfig