-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
87 lines (75 loc) · 2.15 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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
}
module.exports = nextConfig
module.exports = {
images: {
domains: ['images.mirror-media.xyz','images.unsplash.com','i.imgur.com'],
},
async redirects() {
return [
{
source: "/",
destination: "https://seedorg.super.site/",
permanent: true,
},
{
source: "/GovernanceDayAR",
destination: "https://governanceday.framer.website/",
permanent: true,
},
{
source: "/GovernanceDaySEA",
destination: "https://governanceday-devcon.framer.website/",
permanent: true,
},
{
source: "/bienvenida",
destination: "https://www.notion.so/seedlatam/Bienvenidos-welcome-e3f40e15d2d84f4ab34653324a15842b",
permanent: true,
},
{
source: "/events",
destination: "https://www.notion.so/seedlatam/SEED-Latam-Events-627a0d0646d646ef8ab58c491b3e64cf",
permanent: true,
},
{
source: "/governanceday/event",
destination: "https://seedlatam.notion.site/Governance-Day-Side-event-Ethereum-Argentina-ENG-4f4f0d7773da4ecf9e39c97817d25064?pvs=4",
permanent: true,
},
{
source: "/sofiavc",
destination: "https://governance-seedlatam.notion.site/Sovereign-Finance-AVC-6790b6b2fa5544cbacc8d02da5c3b5e3",
permanent: true,
},
{
source: "/wiki",
destination: "https://seedlatam.notion.site/e4b238dd9a2348e198ee4fdf301bf27d?v=211e14a11b1a448486eb5eb8d76c8590",
permanent: true,
},
{
source: "/poap",
destination: "https://defilatam.vercel.app/poap/",
permanent: true,
},
{
source: "/proposal-starknet-latam-summit",
destination: "https://seedlatam.notion.site/Proposal-Starknet-Latam-Summit-e01140e7dc7949c2929f59d327e15e75",
permanent: true,
},
{
source: '/(.*)',
destination: 'https://seedlatam.notion.site/SEEDday-Ethereum-Argentina-cec57147c36f473f8b65ef793c24f338?pvs=4',
has: [
{
type: 'host',
value: 'governanceday.seedlatam.org',
},
],
permanent: true,
},
];
}}