Skip to content

Instantly share code, notes, and snippets.

@illvart
Last active January 13, 2020 15:59
Show Gist options
  • Save illvart/5b78e326b777b7cb2458d622c2ee7489 to your computer and use it in GitHub Desktop.
Save illvart/5b78e326b777b7cb2458d622c2ee7489 to your computer and use it in GitHub Desktop.
now.json (zeit.co) config

@now/static

{
  "name": "illvart",
  "version": 2,
  "builds": [{ "src": "./public/**", "use": "@now/static" }],
  "routes": [
    { "src": "/(.*)", "dest": "public/$1" },
    { "handle": "filesystem" },
    { "src": "/.*", "status": 404, "dest": "public/404.html" }
  ]
}

@now/static-build

{
  "name": "illvart",
  "version": 2,
  "builds": [{ "src": "package.json", "use": "@now/static-build" }],
  "routes": [
    { "src": "/(.*)", "dest": "/$1" },
    { "handle": "filesystem" },
    { "src": "/.*", "status": 404, "dest": "/404.html" }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment