-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathnext.config.js
56 lines (51 loc) · 1.46 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
// Next.js’ i18n `locale` is used to determine the site:
const sites = {
site1: {
locales: {
en: { title: 'The First Site', description: 'This is the description for the first site.' },
se: { title: 'Den första webbplatsen', description: 'Det här är beskrivningen för den första webbplatsen.' }
},
domain: 'multi-domain-locale1.vercel.app'
},
site2: {
locales: {
en: { title: 'The Second Site', description: 'This is the description for the second site.' },
se: { title: 'Den andra webbplatsen', description: 'Det här är beskrivningen för den andra webbplatsen.' }
},
domain: 'multi-domain-locale2.vercel.app'
}
}
const siteKeys = Object.keys(sites)
// Selecting a language is instead handled via a `pseudoLocale` prop:
const pseudoLocales = ['en', 'se']
module.exports = {
// next/config: publicRuntimeConfig available on both server and client – restart needed to change
publicRuntimeConfig: {
sites,
pseudoLocales
},
// We "hijack" Next.js’ i18n system to use for different sites
i18n: {
locales: siteKeys,
defaultLocale: siteKeys[0],
domains: siteKeys.map(siteKey => (
{
domain: sites[siteKey].domain,
defaultLocale: siteKey
}
))
},
// Redirect / to default pseudoLocale
redirects: () => (
[
{
source: '/',
destination: `/${pseudoLocales[0]}`,
permanent: true
}
]
),
future: {
webpack5: true
}
}