Advertisement
Grork

vercel

Oct 10th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. {
  2. "version": 2,
  3. "functions": {
  4. "api/index.php": {
  5. "runtime": "vercel-php@0.3.1"
  6. }
  7. },
  8. "routes": [
  9. {
  10. "src": "/(.*)\\.(.*)$",
  11. "dest": "public/$1.$2"
  12. },
  13. {
  14. "src": "/(.*)",
  15. "dest": "/api/index.php"
  16. }
  17. ],
  18. "env": {
  19. "APP_ENV": "development",
  20. "APP_DEBUG": "true",
  21. "APP_CONFIG_CACHE": "/tmp/config.php",
  22. "APP_EVENTS_CACHE": "/tmp/events.php",
  23. "APP_PACKAGES_CACHE": "/tmp/packages.php",
  24. "APP_ROUTES_CACHE": "/tmp/routes.php",
  25. "APP_SERVICES_CACHE": "/tmp/services.php",
  26. "CACHE_DRIVER": "array",
  27. "LOG_CHANNEL": "stderr",
  28. "SESSION_DRIVER": "array",
  29. "VIEW_COMPILED_PATH": "/tmp/views",
  30. "SSR_TEMP_PATH": "/tmp/ssr",
  31. "NODE_PATH": "node"
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement