···16 "branch": "main", // optional, defaults to main
17 "baseDir": "/public", // optional, defaults to the repo root
18 "notFoundFilepath": "/404.html" // optional, defaults to text 404
19- }
020}
21```
22···3536## Limitations
3738-The server fetches files from the repo on request, so it might be slow.
39-In the future, we could cache the files and use a CI to clear the cache as needed.
···16 "branch": "main", // optional, defaults to main
17 "baseDir": "/public", // optional, defaults to the repo root
18 "notFoundFilepath": "/404.html" // optional, defaults to text 404
19+ },
20+ "cache": true // server only, not supported in workers (yet)
21}
22```
23···3637## Limitations
3839+When `cache: false`, the server fetches files from the repo on every request, so it might be slow.
0