-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnext.config.js
88 lines (87 loc) · 2.12 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const { hostname } = require('os');
module.exports = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'notjustdev-media.s3.amazonaws.com',
},
{
protocol: 'https',
hostname: 'embed.filekitcdn.com', // convertkit,
},
],
},
async rewrites() {
return [
{
source: '/CodeForUkraine',
destination: '/blog/2022-03-01-codeforukraine-hackathon',
},
{
source: '/masterclass',
destination: 'https://assets.notjust.dev/masterclass',
},
{
source: '/banner/appjs2023',
destination: '/links',
},
];
},
async redirects() {
return [
{
source: '/masterclass-guide',
destination:
'https://notjust.notion.site/Masterclass-Build-a-SM-app-in-2-days-a531dd6e786c491692e1f24c965538ad',
permanent: false,
},
{
source: '/shop',
destination: 'https://my-store-11437346.creator-spring.com/',
permanent: false,
},
{
source: '/hack-event',
destination:
'https://events.zoom.us/ev/Ajc5bJBZEl2f2uhIDg-bt7cHDY4mqF1eFudjFVJuXnDqRCteHPvC~AggLXsr32QYFjq8BlYLZ5I06Dg',
permanent: false,
},
{
source: '/hack',
destination: 'https://www.notjusthack.com/',
permanent: true,
},
{
source: '/discord',
destination: 'https://discord.gg/VpURUN2',
permanent: true,
},
{
source: '/club',
destination: 'https://www.youtube.com/channel/UCYSa_YLoJokZAwHhlwJntIA/join',
permanent: true,
},
{
source: '/accelerator',
destination: '/incubator',
permanent: true,
},
{
source: '/stickersheet',
destination: 'https://bit.ly/3KrjgEz',
permanent: false,
},
{
source: '/sketchbook',
destination: 'https://bit.ly/3KrjgEz',
permanent: false,
},
{
source: '/02-25-business-card',
destination: 'https://www.notjust.dev/partnerships',
permanent: false,
},
];
},
};