Pikanté Landing is a fully static site. RunningDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/luigitemu/pikante-landing/llms.txt
Use this file to discover all available pages before exploring further.
npm run build produces a self-contained ./dist/ folder of HTML, CSS, JavaScript, and media files — no server runtime, no serverless functions, and no environment variables. Any platform that can serve static files will work; the three most common are covered below.
Production build
Before deploying, generate the production build locally to confirm everything compiles cleanly:./dist/. You can preview that build with:
./dist/ at http://localhost:4321 so you can verify the final output before it goes live.
Deploy targets
- Vercel
- Netlify
- Cloudflare Pages
Vercel auto-detects Astro projects and pre-fills the correct settings. You can deploy via the Vercel dashboard or the CLI.Dashboard (recommended)
Follow the interactive prompts. On the first run, Vercel links the project and detects the Astro preset. Subsequent deploys use
- Push the repository to GitHub, GitLab, or Bitbucket.
- Open vercel.com/new and import the repository.
- Vercel detects the Astro framework preset automatically. Confirm the settings:
| Setting | Value |
|---|---|
| Framework Preset | Astro |
| Build Command | npm run build |
| Output Directory | dist |
- Click Deploy. Vercel runs the build and publishes
dist/.
vercel --prod.Static output — no adapter required
No
adapter needs to be added to astro.config.mjs for these deployments. Astro’s default output mode is static, which is exactly what all three platforms expect. Adding a server adapter (e.g. @astrojs/vercel) is only necessary if you need server-side rendering — Pikanté Landing does not.astro.config.mjs is intentionally minimal:
astro.config.mjs
output: 'server', no adapter — Astro defaults to output: 'static' and generates a fully pre-rendered site.
Bandwidth considerations
Thepublic/assets/prep-video.mp4 file (~4 MB) is included in the static build and served directly as a binary asset. On free-tier hosting plans, large binary files count against your bandwidth quota. Keep the following in mind:
- Vercel free tier has a 100 GB/month bandwidth limit — the video should be fine for moderate traffic.
- Netlify free tier includes 100 GB/month; after that, charges apply.
- Cloudflare Pages does not charge for bandwidth, making it the most cost-efficient option for a media-heavy static site.