mirror of
https://github.com/logos-messaging/rln.waku.org.git
synced 2026-01-02 14:13:09 +00:00
14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
domains: [
|
|
'waku.org',
|
|
'logos.co',
|
|
'contributors.free.technology'
|
|
],
|
|
},
|
|
reactStrictMode: true,
|
|
output: 'export',
|
|
}
|
|
|
|
module.exports = nextConfig
|