this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

prettier

+9 -9
+1 -2
.prettierrc.json
··· 6 6 , 7 7 "importOrder": ["react", "next", "<THIRD_PARTY_MODULES>", "","^#/(.*)$", "", "^[./]"], 8 8 "importOrderParserPlugins": ["typescript", "jsx", "decorators-legacy"], 9 - "importOrderTypeScriptVersion": "5.0.0", 10 - "importOrderCaseSensitive": false 9 + "importOrderTypeScriptVersion": "5.0.0" 11 10 }
+2 -1
package.json
··· 6 6 "dev": "next dev", 7 7 "build": "next build", 8 8 "start": "next start", 9 - "lint": "next lint" 9 + "lint": "next lint", 10 + "format": "prettier -w src" 10 11 }, 11 12 "dependencies": { 12 13 "@atcute/client": "^2.0.3",
+1 -1
src/app/globals.css
··· 47 47 transparent 10px 48 48 ); 49 49 } 50 - } 50 + }
+1 -1
src/app/page.tsx
··· 2 2 import { PostList } from "#/components/post-list"; 3 3 import { Title } from "#/components/typography"; 4 4 5 - export const dynamic = 'force-static' 5 + export const dynamic = "force-static"; 6 6 export const revalidate = 60 * 60; // 1 hour 7 7 8 8 export default function Home() {
+3 -3
src/lib/bsky.ts
··· 1 1 import { CredentialManager, XRPC } from "@atcute/client"; 2 2 3 - export const MY_DID = "did:plc:p2cp5gopk7mgjegy6wadk3ep" 4 - export const MY_PDS = "https://amanita.us-east.host.bsky.network" 3 + export const MY_DID = "did:plc:p2cp5gopk7mgjegy6wadk3ep"; 4 + export const MY_PDS = "https://amanita.us-east.host.bsky.network"; 5 5 6 6 const handler = new CredentialManager({ service: MY_PDS, fetch }); 7 - export const bsky = new XRPC({ handler }); 7 + export const bsky = new XRPC({ handler });
+1 -1
src/lib/cx.ts
··· 1 - export {twMerge as cx} from 'tailwind-merge' 1 + export { twMerge as cx } from "tailwind-merge";