{
  "regions": ["iad1"],

  "routes": [
    {
      "src": "/(?<imageId>[^/]+)",
      "methods": ["GET"],
      "dest": "/api/get.ts?imageId=$imageId"
    },
    {
      "src": "/(?<imageId>[^/]+)",
      "methods": ["DELETE"],
      "dest": "/api/delete.ts?imageId=$imageId"
    },
    {
      "src": "/(?<imageId>[^/]+)",
      "methods": ["OPTIONS"],
      "dest": "/api/options.ts"
    },
    {
      "src": "/",
      "methods": ["POST", "OPTIONS"],
      "dest": "/api/upload.ts"
    }
  ],

  "github": {
    "enabled": false
  }
}
