-
Notifications
You must be signed in to change notification settings - Fork 2
/
next.config.js
74 lines (73 loc) · 1.83 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const withPWA = require('next-pwa');
module.exports = withPWA({
pwa: {
dest: 'public',
register: true,
skipWaiting: true,
},
reactStrictMode: true,
async redirects() {
return [
{
source: '/add',
destination: 'https://discord.com/oauth2/authorize?client_id=880173509077266483&scope=bot%20applications.commands&permissions=268823622',
permanent: true,
},
{
source: '/discord',
destination: 'https://discord.gg/pyyyJpw5QW',
permanent: true,
},
{
source: '/twitter',
destination: 'https://twitter.com/ZulyBot',
permanent: true,
},
{
source: '/github',
destination: 'https://github.com/zulybot',
permanent: true
},
{
source: '/andgithub',
destination: 'https://github.com/andrelucaas',
permanent: true
},
{
source: '/adgdeveloper',
destination: 'https://www.adgdeveloper.tk',
permanent: true
},
{
source: '/andtwitter',
destination: 'https://twitter.com/4DG_YT',
permanent: true
},
{
source: '/dbl',
destination: 'https://top.gg/bot/880173509077266483',
permanent: true,
},
{
source: '/bestlist',
destination: 'https://bestlist.online/bots/880173509077266483',
permanent: true,
},
{
source: '/discordbots',
destination: 'https://discord.bots.gg/bots/880173509077266483',
permanent: true
},
{
source: '/discordboats',
destination: 'https://discord.boats/bot/880173509077266483',
permanent: true
},
{
source: '/bluephoenix',
destination: 'https://bluephoenixlist.xyz/bot/880173509077266483',
permanent: true
}
]
},
})