The following steps assume:
- Ionify writes build output to `dist/` by default (override via `ionify build --out-dir
`) - Ionify is installed as a dev dependency and exposed through npm scripts (use pnpm/yarn equivalents)
```json { "scripts": { "dev": "ionify dev", "build": "ionify build" } } ```
Ionify keeps a persistent dependency graph and CAS under `.ionify/cas/
Build the app
```bash npm run build ```
The production assets are emitted to `dist/`. Deploy that folder to your static hosting provider of choice.