rln.waku.org/next.config.ts

15 lines
243 B
TypeScript
Raw Permalink Normal View History

2025-04-04 17:29:57 +05:30
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-04-18 13:36:29 +05:30
images: {
domains: [
'waku.org',
'logos.co',
'contributors.free.technology'
],
},
reactStrictMode: true,
}
2025-04-04 17:29:57 +05:30
2025-04-18 13:36:29 +05:30
module.exports = nextConfig