This commit is contained in:
lucas-neynar 2025-03-13 13:50:04 -07:00
parent f040e9dcf9
commit 853c63e024
No known key found for this signature in database
4 changed files with 3 additions and 14 deletions

View File

@ -9,8 +9,4 @@ This is a [NextJS](https://nextjs.org/) + TypeScript + React app.
To create a new frames project, run:
```{bash}
npx frames-v2-quickstart
```
## TODO
* try ngrok locally, then integrate with localtunnel if possible
* ask for seed phrase in setup and generate manifest
```

View File

@ -13,14 +13,9 @@ export default async function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
console.log('Environment variables:');
console.log('NEXT_PUBLIC_URL:', process.env.NEXT_PUBLIC_URL);
console.log('NEXTAUTH_URL:', process.env.NEXTAUTH_URL);
}>) {
const session = await getSession()
console.log('Session:', session);
return (
<html lang="en">
<body>

View File

@ -9,7 +9,6 @@ export const size = {
export const contentType = "image/png";
// dynamically generated OG image for frame preview
// TODO: make this dynamic with user info (like robin's example)
export default async function Image() {
return new ImageResponse(
(

View File

@ -63,7 +63,6 @@ export const authOptions: AuthOptions = {
});
const domain = getDomainFromUrl(process.env.NEXTAUTH_URL);
console.log('Using domain for auth:', domain);
const verifyResponse = await appClient.verifySignInMessage({
message: credentials?.message as string,