Files
Gesti-n-Reservas-Naturcalab…/apps/web/index.html
Kilian 22e8cc893f Add Dockerfiles, .dockerignore and brand logo
- apps/api/Dockerfile: multi-stage pnpm build, runtime node:22-alpine, port 3001
- apps/web/Dockerfile: multi-stage pnpm + Vite, runtime nginx:alpine with SPA config
- .dockerignore: excludes node_modules, dist, .env, .git, IDE folders, design docs
- Brand logo (naturcalabacera.webp) integrated as favicon, sidebar icon, header logo
- index.html title updated to 'Naturcalabacera · Reservas'
2026-04-30 10:22:37 +01:00

15 lines
450 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/webp" href="/naturcalabacera.webp" />
<link rel="apple-touch-icon" href="/naturcalabacera.webp" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Naturcalabacera · Reservas</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>