-
Notifications
You must be signed in to change notification settings - Fork 100
/
now.json
executable file
·27 lines (27 loc) · 984 Bytes
/
now.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"version": 2,
"name": "app",
"scope": "raindrop-io",
"trailingSlash": false,
"public": false,
"builds": [
{
"src": "package.json",
"use": "@vercel/static-build",
"config": { "distDir": "dist/web/prod" }
}
],
"headers": [
{ "source": "/assets/(.*)", "headers": [{ "key": "cache-control", "value": "public,max-age=31536000,immutable" }] },
{ "source": "/(.*)", "headers": [{ "key": "X-Frame-Options", "value": "DENY" }] }
],
"redirects": [
{ "source": "/legacy/4", "destination": "https://extension.raindrop.io", "permanent": true }
],
"rewrites": [
{ "source": "/pb/site.js", "destination": "https://plausible.io/js/plausible.exclusions.js" },
{ "source": "/pb/hash.js", "destination": "https://plausible.io/js/plausible.hash.exclusions.js" },
{ "source": "/pb/api/event", "destination": "https://plausible.io/api/event" },
{ "source": "/(.*)", "destination": "/index.html" }
]
}