On September 10th, Base Chain will begin enforcing a per-transaction gas cap. Read more here.
Add Farcaster embed metadata and finalize your Vite Mini App
index.html
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <link rel="icon" type="image/svg+xml" href="/vite.svg" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Your Mini App</title> <!-- Farcaster Frame metadata --> <meta name="fc:frame" content="vNext" /> <meta name="fc:frame:image" content="https://yourapp.com/preview.png" /> <meta name="fc:frame:button:1" content="Launch App" /> <meta name="fc:frame:button:1:action" content="launch_frame" /> <meta name="fc:frame:button:1:target" content="https://yourapp.com" /> <!-- Open Graph metadata --> <meta property="og:title" content="Your Mini App" /> <meta property="og:description" content="Description of your app" /> <meta property="og:image" content="https://yourapp.com/og.png" /> <meta property="og:url" content="https://yourapp.com" /> <meta property="og:type" content="website" /> </head> <body> <div id="root"></div> <script type="module" src="/src/main.tsx"></script> </body> </html>
npm run dev
http://localhost:5173
npm run build
https://yourdomain.com/.well-known/farcaster.json
Was this page helpful?