mirror of
https://github.com/semaphore-protocol/semaphore.git
synced 2026-04-28 03:00:41 -04:00
14 lines
261 B
JavaScript
14 lines
261 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "semaphore.cedoor.dev"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|