Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. {
  2. "version": 2,
  3. "env": {
  4. "POSTGRESQL_URL": "@cfaa-postgresql-url-production",
  5. "BACKEND_URL": "@cfaa-backend-url-production",
  6. "FRONTEND_URL": "@cfaa-frontend-url-production"
  7. },
  8. "build": {
  9. "env": {
  10. "POSTGRESQL_URL": "@cfaa-postgresql-url-production",
  11. "BACKEND_URL": "@cfaa-backend-url-production",
  12. "FRONTEND_URL": "@cfaa-frontend-url-production"
  13. }
  14. },
  15. "builds": [
  16. {
  17. "src": "frontend/next.config.js",
  18. "use": "@now/next"
  19. },
  20. {
  21. "src": "backend/src/server.ts",
  22. "use": "@now/node",
  23. "config": { "maxLambdaSize": "50mb" }
  24. }
  25. ],
  26. "routes": [
  27. { "src": "/graphql", "dest": "/backend/src/server.ts" },
  28. {
  29. "src": "/(.*)",
  30. "dest": "/frontend/$1"
  31. }
  32. ]
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement