generated from okp4/template-oss
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnext.config.js
71 lines (70 loc) · 1.57 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
/** @type {import('next').NextConfig} */
const path = require('path')
const pkg = require('./package.json')
module.exports = {
reactStrictMode: true,
swcMinify: true,
output: 'standalone',
publicRuntimeConfig: {
version: pkg.version
},
i18n: {
locales: ['en'],
defaultLocale: 'en'
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**'
}
]
},
webpack(config) {
config.experiments = { ...config.experiments, ...{ topLevelAwait: true } }
config.module.rules[2].oneOf?.forEach(one => {
if (!`${one.issuer?.and}`.includes('_app')) return
one.issuer.and = [path.resolve()]
})
return config
},
async redirects() {
return [
{
source: '/tasks',
destination: '/validators/tasks#tasks',
permanent: true
},
{
source: '/leaderboard',
destination: '/validators/leaderboard#leaderboard',
permanent: true
},
{
source: '/rewards',
destination: '/validators/rewards#rewards',
permanent: true
},
{
source: '/faq',
destination: '/validators/faq#faq',
permanent: true
},
{
source: '/terms',
destination: '/validators/terms#terms-conditions',
permanent: true
},
{
source: '/builders',
destination: '/builders/challenges#challenges',
permanent: true
},
{
source: '/validators',
destination: '/validators/leaderboard#leaderboard',
permanent: true
}
]
}
}