-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext.config.js
33 lines (32 loc) · 1.18 KB
/
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
28
29
30
31
32
33
module.exports = {
reactStrictMode: true,
async redirects() {
return [
{
source: '/greet',
destination: 'https://beacons.ai/skyrats?fbclid=PAY2xjawGh0hNleHRuA2FlbQIxMQABplOp_W4eshzx2fyRp8eBsOpGHFIX_zjK1chkn4dXrue363i9WlU17s82lw_aem_oqyq-NrXAbXvB5AYT7dgWw',
permanent: false
},
{
source: '/pilot/outdoor/0',
destination: 'https://docs.google.com/spreadsheets/d/1hUbA3VqjouE7MHPKiWJByQ7fNmMT3xUGOw4txx6Tbew/edit?gid=1166893714#gid=1166893714',
permanent: false
},
{
source: '/pilot/outdoor/1',
destination: 'https://docs.google.com/spreadsheets/d/1hUbA3VqjouE7MHPKiWJByQ7fNmMT3xUGOw4txx6Tbew/edit?gid=315769465#gid=315769465',
permanent: false
},
{
source: '/pilot/indoor/0',
destination: 'https://docs.google.com/spreadsheets/d/1hUbA3VqjouE7MHPKiWJByQ7fNmMT3xUGOw4txx6Tbew/edit?gid=839429704#gid=839429704',
permanent: false
},
{
source: '/pilot/indoor/1',
destination: 'https://docs.google.com/spreadsheets/d/1hUbA3VqjouE7MHPKiWJByQ7fNmMT3xUGOw4txx6Tbew/edit?gid=653802211#gid=653802211',
permanent: false
}
];
}
}