forked from sirgawain0x/jukebox-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminikit.config.ts
More file actions
36 lines (34 loc) · 1.06 KB
/
Copy pathminikit.config.ts
File metadata and controls
36 lines (34 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const ROOT_URL =
process.env.NEXT_PUBLIC_URL ||
(process.env.VERCEL_PROJECT_PRODUCTION_URL ? `https://${process.env.VERCEL_PROJECT_PRODUCTION_URL}` : 'http://localhost:3000');
/**
* MiniApp configuration object. Must follow the Farcaster MiniApp specification.
*
* @see {@link https://miniapps.farcaster.xyz/docs/guides/publishing}
*/
export const minikitConfig = {
accountAssociation: {
header: "",
payload: "",
signature: ""
},
miniapp: {
version: "1",
name: "Cubey",
subtitle: "Your AI Ad Companion",
description: "Ads",
screenshotUrls: [`${ROOT_URL}/screenshot-portrait.png`],
iconUrl: `${ROOT_URL}/blue-icon.png`,
splashImageUrl: `${ROOT_URL}/blue-hero.png`,
splashBackgroundColor: "#000000",
homeUrl: ROOT_URL,
webhookUrl: `${ROOT_URL}/api/webhook`,
primaryCategory: "social",
tags: ["marketing", "ads", "quickstart", "waitlist"],
heroImageUrl: `${ROOT_URL}/blue-hero.png`,
tagline: "",
ogTitle: "",
ogDescription: "",
ogImageUrl: `${ROOT_URL}/blue-hero.png`,
},
} as const;