staticwebapp.config.json 328 B

12345678910111213141516171819
  1. {
  2. "mimeTypes": {
  3. ".txt": "text/plain; charset=utf-8"
  4. },
  5. "routes": [
  6. {
  7. "route": "/llms.txt",
  8. "headers": {
  9. "Content-Type": "text/plain; charset=utf-8"
  10. }
  11. },
  12. {
  13. "route": "/llms-full.txt",
  14. "headers": {
  15. "Content-Type": "text/plain; charset=utf-8"
  16. }
  17. }
  18. ]
  19. }