mirror of
https://github.com/logos-messaging/rln.waku.org.git
synced 2026-01-02 14:13:09 +00:00
15 lines
243 B
TypeScript
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
|