summaryrefslogtreecommitdiff
path: root/.github/workflows/installer/vercel.json
blob: 524dc3c0f280f20621f774463403e4ab3b785c65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "headers": [
    {
      "source": "/((?!favicon.ico).*)",
      "headers": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        },
        {
          "key": "Content-Disposition",
          "value": "inline; filename=\"install.sh\""
        }
      ]
    }
  ],
  "rewrites": [
    {
      "source": "/((?!favicon.ico|install.sh).*)",
      "destination": "/install.sh"
    }
  ]
}