import type { NextConfig } from "next"; const nextConfig: NextConfig = { async rewrites() { return [ { source: '/.well-known/atproto-did', destination: 'https://pds.frg.network/.well-known/atproto-did', } ] } } export default nextConfig;