Skip to content

Commit

Permalink
Add Vite.js docs
Browse files Browse the repository at this point in the history
  • Loading branch information
by-cx committed Apr 11, 2024
1 parent 1e9c900 commit 4a003c5
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
41 changes: 41 additions & 0 deletions docs/cs/frameworks/vite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Vite.js

Framework Vite.js běží na straně prohlížeče, tak na straně serveru stačí pouze statický hosting.
V administraci tedy vytvoříme novou aplikaci a vybereme technologii "default".
Na lokálním počítači zavoláme `npm run build` a obsah adresář `dist` zkopírujemne na server
do adresáře `/srv/app`.

U Vite.js musíme nakonfigurovat Nginx na serveru tak, aby na všechny stránky a podstránky
vracel `index.html`. Otevřete tedy konfigurační soubor `/srv/conf/nginx.d/app.conf` a do
něj vložte:

```
server {
listen 8000;
index index.html;
location / {
root /srv/app;
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
```

Pak zavolejte:

```
supervisorctl restart nginx
```

A web by měl fungovat na všech doménách nastavených v administraci. Optimálně
je ještě dobré vytvořit soubory `/srv/app/40x.html` a `/srv/app/50x.html`,
které se zobrazí při chybových stavech.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ nav:
- "Next.js": cs/frameworks/nextjs.md
#- "React static site": cs/frameworks/react-static.md
- "Strapi": cs/frameworks/strapi.md
- "Vite.js": cs/frameworks/vite.md
- "NewRelic APM PHP agent": cs/frameworks/newrelic-php.md
- "Další informace":
- "Platby za služby": cs/billing.md
Expand Down

0 comments on commit 4a003c5

Please sign in to comment.