Files
semaphore/apps/website/next.config.js
2023-11-05 14:04:46 +00:00

14 lines
261 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "semaphore.cedoor.dev"
}
]
}
}
module.exports = nextConfig