Add ATProto DID rewrite

This commit is contained in:
anonymousratwastaken 2026-04-23 18:08:00 +01:00
parent e041cbe746
commit 110d2cddb2

View file

@ -1,7 +1,14 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { 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; export default nextConfig;