forked from SomnathKar000/Furniture-website
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvercel.json
More file actions
34 lines (34 loc) · 961 Bytes
/
vercel.json
File metadata and controls
34 lines (34 loc) · 961 Bytes
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
28
29
30
31
32
33
34
{
"version": 2,
"builds": [
{
"src": "package.json",
"use": "@vercel/static-build",
"config": {
"distDir": "build"
}
},
{
"src": "backend/index.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/api/(.*)",
"dest": "backend/index.js"
},
{
"src": "/(.*)",
"dest": "/build/$1"
}
],
"env": {
"REACT_APP_BACKEND_PORT": "5000",
"JWTSECRET": "amiSomnath",
"REACT_APP_STRIPE_PUBLIC_KEY": "pk_test_51MdZfRSH3GkL6hjynE5OJL0hJu16h7RWhnrpTdUfDodXU7AAdNWg3DbtEdqiNKXh9g4ZIP6nlwfzWrdFPnasnsXg00M3jF4M3Q",
"REACT_APP_STRIPE_PRIVATE_KEY": "sk_test_51MdZfRSH3GkL6hjyIHPzefJK8bVV3zBdI9pg23vZbkfY7LTofCCQ7DcpQv58S34lu8Wlh3tLRDi0iBkHxXIjocDI00ywJ9PxM1",
"DB_URL": "mongodb+srv://Somnath000:som007007@nodeexpressprojects.c4mduyu.mongodb.net/furniture-store?retryWrites=true&w=majority",
"REACT_APP_SERVER_URL": "http://localhost:5000/"
}
}