npm create tamagui@latest --template expo-router
This repo is a starter for an Expo + Tamagui app.
- Tamagui 🪄
- Expo SDK
- Expo Router
The main apps are:
app
you'll be importing most files fromapp/
-
Install dependencies:
bun install
-
Web local dev:
bun web
-
Android local dev:
bun android
-
Ios local dev:
bun ios
Note we're following the design systems guide and creating our own package for components.
If you're installing a JavaScript-only dependency that will be used across platforms, install it as example:
bun add jotai
bun update
- Config in
vercel.json
file - Build command: leave default setting
- Output dir: leave default setting
- Build preview version with
bunx vercel build
or production withbunx vercel build --prod
- Then deploy the preview with
bunx vercel --prebuilt
or production withbunx vercel --prod --prebuilt