HTMLify

vercel.json
Views: 34 | Author: cody
{
  "version": 2,
  "builds": [
    {
      "src": "web/",
      "use": "@vercel/static"
    }
  ],
  "routes": [
    { "handle": "filesystem" },
    {
      "src": "/(.*)",
      "dest": "/web/index.html"
    }
  ]
}

Comments