xworkmate-app/lib/web/Caddyfile
Haitao Pan 7f6d83271f feat(web): add Caddyfile for static file serving
Add Caddyfile to serve Flutter web build output with SPA routing support.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-28 12:08:35 +08:00

8 lines
123 B
Caddyfile

:8080 {
root * /app/public
file_server
encode gzip
# Handle SPA routing
try_files {path} /index.html
}