From 110d2cddb23b4b6ba514bbdc455f7b8e1a2764c7 Mon Sep 17 00:00:00 2001 From: anonymousratwastaken Date: Thu, 23 Apr 2026 18:08:00 +0100 Subject: [PATCH] Add ATProto DID rewrite --- next.config.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..795be24 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,14 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ -}; + async rewrites() { + return [ + { + source: '/.well-known/atproto-did', + destination: 'https://pds.frg.network/.well-known/atproto-did', + } + ] + } +} export default nextConfig;