-
Notifications
You must be signed in to change notification settings - Fork 15
/
vercel.json
24 lines (24 loc) · 1.03 KB
/
vercel.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
{
"version": 2,
"alias": "yata",
"build": {
"env": {
"REACT_APP_VERSION": "@react_app_version",
"REACT_APP_BUGS_URL": "@react_app_bugs_url",
"REACT_APP_TWITCH_CLIENT_ID": "@react_app_twitch_client_id",
"REACT_APP_TWITCH_REDIRECT_URI": "@react_app_twitch_redirect_uri",
"REACT_APP_YOUTUBE_API_KEY": "@react_app_youtube_api_key",
"REACT_APP_IMGUR_CLIENT_ID": "@react_app_imgur_client_id"
}
},
"builds": [{ "src": "package.json", "use": "@vercel/static-build", "config": { "distDir": "build" } }],
"rewrites": [
{ "source": "^/static/(.*)", "destination": "/build/static/$1" },
{ "source": "^/asset-manifest.json", "destination": "/asset-manifest.json" },
{ "source": "^/favicon.ico", "destination": "/favicon.ico" },
{ "source": "^/icon.png", "destination": "/icon.png" },
{ "source": "^/manifest.json", "destination": "/manifest.json" },
{ "source": "^/service-worker.js", "destination": "/service-worker.js" },
{ "source": "(.*)", "destination": "/index.html" }
]
}