generated from rishiosaur/perfect-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
27 lines (27 loc) · 992 Bytes
/
next.config.js
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
module.exports = {
target: 'serverless',
env: {
teamRepo: 'grizzlybots11918/ultimategoal',
teamDefaultBranch: 'master',
teamBuildWorkflow: '.github/workflows/build.yml',
upstreamRepo: 'FIRST-Tech-Challenge/FtcRobotController',
NEXT_PUBLIC_ACCENT: '#ef4b24',
// color scheme must be one of "orange" | "whiteAlpha" | "blackAlpha" | "gray" | "red" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram"
NEXT_PUBLIC_COLOR_SCHEME: 'orange',
REVAL_SECS: 10,
REPL_DEPLOY_TIMEOUT: 15000
},
async headers() {
return [
{
source: '/api/downloadDs',
headers: [
{
key: 'Content-Type',
value: 'application/vnd.android.package-archive'
}
]
}
]
}
}