Files
coolify-examples/node/qwik/README.md
T
2026-04-10 12:40:08 +02:00

26 lines
376 B
Markdown

# Qwik
Qwik examples with SSR and static export.
## Variants
### SSR (Server-Side Rendering)
```bash
cd ssr
npm install
npm run dev # development
npm run build # build
npm start # production server
```
### Static Export
```bash
cd static
npm install
npm run dev # development
npm run build # build client files
npm start # serve static files
```