static.json 325 B

123456789101112131415161718
  1. {
  2. "root": "www/",
  3. "clean_urls": true,
  4. "https_only": true,
  5. "routes": {
  6. "/assets/*": "/assets/",
  7. "/build/*": "/build/",
  8. "/**": "index.html"
  9. },
  10. "headers": {
  11. "/**": {
  12. "Cache-Control": "public, max-age=600"
  13. },
  14. "/build/p-*.js": {
  15. "Cache-Control": "public, max-age=86400"
  16. }
  17. }
  18. }