This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
102 lines (100 loc) · 2.6 KB
/
next.config.mjs
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import './src/env.mjs'
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'api.palladians.xyz'
}
]
},
async redirects() {
return [
{
source: '/accounts/:path*',
destination: '/mainnet/accounts/:path*',
permanent: true
},
{
source: '/staking/:path*',
destination: '/mainnet/staking/:path*',
permanent: true
},
{
source: '/transactions/:path*',
destination: '/mainnet/transactions/:path*',
permanent: true
}
]
},
async rewrites() {
return [
{
source: '/devnet/me/:path*',
destination: 'https://devnet.minaexplorer.com/:path*'
},
{
source: '/devnet/me/api/:path*',
destination: 'https://devnet.api.minaexplorer.com/:path*'
},
{
source: '/devnet/gql/:path*',
destination: 'https://devnet.graphql.minaexplorer.com/:path*'
},
{
source: '/devnet/proxy/:path*',
destination: 'https://proxy.devnet.minaexplorer.com/:path*'
},
{
source: '/berkeley/me/:path*',
destination: 'https://berkeley.minaexplorer.com/:path*'
},
{
source: '/berkeley/me/api/:path*',
destination: 'https://berkeley.api.minaexplorer.com/:path*'
},
{
source: '/berkeley/gql/:path*',
destination: 'https://berkeley.graphql.minaexplorer.com/:path*'
},
{
source: '/berkeley/proxy/:path*',
destination: 'https://proxy.berkeley.minaexplorer.com/:path*'
},
{
source: '/testworld/me/:path*',
destination: 'https://testworld.minaexplorer.com/:path*'
},
{
source: '/testworld/me/api/:path*',
destination: 'https://testworld.api.minaexplorer.com/:path*'
},
{
source: '/testworld/gql/:path*',
destination: 'https://testworld.graphql.minaexplorer.com/:path*'
},
{
source: '/testworld/proxy/:path*',
destination: 'https://proxy.testworld.minaexplorer.com/:path*'
},
{
source: '/me/api/:path*',
destination: 'https://api.minaexplorer.com/:path*'
},
{
source: '/me/:path*',
destination: 'https://minaexplorer.com/:path*'
},
{
source: '/gql/:path*',
destination: 'https://graphql.minaexplorer.com/:path*'
},
{
source: '/proxy/:path*',
destination: 'https://proxy.minaexplorer.com/:path*'
}
]
}
}
export default nextConfig