Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. {
  2. "functions": {
  3. "predeploy": "npm run clean && npm run build:app && npm run build:functions && npm run copy:deps",
  4. "source": "dist/functions"
  5. },
  6. "hosting": {
  7. "predeploy": "npm run build:public",
  8. "public": "dist/public",
  9. "rewrites": [
  10. {
  11. "source": "/about",
  12. "function": "about"
  13. },
  14. {
  15. "source": "**/**",
  16. "function": "index"
  17. }
  18. ]
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement