mirror of
https://github.com/neynarxyz/create-farcaster-mini-app.git
synced 2025-11-15 23:58:56 -05:00
fix: https prefix for manifest fields
This commit is contained in:
parent
8ed98b604a
commit
089a5ad2b0
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-neynar-farcaster-frame",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
"type": "module",
|
||||
"files": [
|
||||
"bin/index.js"
|
||||
|
||||
@ -136,11 +136,11 @@ async function generateFarcasterMetadata(domain, accountAddress, seedPhrase, web
|
||||
frame: {
|
||||
version: "1",
|
||||
name: process.env.NEXT_PUBLIC_FRAME_NAME,
|
||||
iconUrl: `${domain}/icon.png`,
|
||||
homeUrl: domain,
|
||||
imageUrl: `${domain}/opengraph-image`,
|
||||
iconUrl: `https://${domain}/icon.png`,
|
||||
homeUrl: `https://${domain}`,
|
||||
imageUrl: `https://${domain}/opengraph-image`,
|
||||
buttonTitle: process.env.NEXT_PUBLIC_FRAME_BUTTON_TEXT,
|
||||
splashImageUrl: `${domain}/splash.png`,
|
||||
splashImageUrl: `https://${domain}/splash.png`,
|
||||
splashBackgroundColor: "#f7f7f7",
|
||||
webhookUrl,
|
||||
},
|
||||
|
||||
@ -53,7 +53,7 @@ async function generateFarcasterMetadata(domain, accountAddress, seedPhrase, web
|
||||
version: "1",
|
||||
name: process.env.NEXT_PUBLIC_FRAME_NAME?.trim(),
|
||||
iconUrl: `https://${trimmedDomain}/icon.png`,
|
||||
homeUrl: trimmedDomain,
|
||||
homeUrl: `https://${trimmedDomain}`,
|
||||
imageUrl: `https://${trimmedDomain}/opengraph-image`,
|
||||
buttonTitle: process.env.NEXT_PUBLIC_FRAME_BUTTON_TEXT?.trim(),
|
||||
splashImageUrl: `https://${trimmedDomain}/splash.png`,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user