···11-// src/helpers/oauthClient.ts
21import { BrowserOAuthClient, type ClientMetadata } from '@atproto/oauth-client-browser';
3244-// This is your app's PDS for resolving handles if not provided.
55-// You might need to host your own or use a public one.
33+// i tried making this https://pds-nd.whey.party but cors is annoying as fuck
64const handleResolverPDS = 'https://bsky.social';
7588-// This assumes your client-metadata.json is in the /public folder
99-// and will be served at the root of your domain.
66+// eslint-disable-next-line @typescript-eslint/ban-ts-comment
77+// @ts-ignore this should be fine ? the vite plugin should generate this before errors
108import clientMetadata from '../../public/client-metadata.json' with { type: 'json' };
1191210export const oauthClient = new BrowserOAuthClient({