14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
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;
|