-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
71 lines (70 loc) · 1.77 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
module.exports = {
i18n: {
locales: ["is"],
defaultLocale: 'is'
},
async redirects() {
return [
{
source: "/",
destination: "https://litasyn.is/",
permanent: true,
},
{
source: "/málarameistari",
destination: "https://litasyn.is/málarameistari",
permanent: true,
},
{
source: "/málari",
destination: "https://litasyn.is/málari",
permanent: true,
},
{
source: "/málningarþjónusta",
destination: "https://litasyn.is/málningarþjónusta",
permanent: true,
},
{
source: "/verkefni",
destination: "https://litasyn.is/verkefni",
permanent: true,
},
{
source: "/verkefni/hjarðarhagi24-32",
destination: "https://litasyn.is/verkefni/hjarðarhagi24-32",
permanent: true,
},
{
source: "/verkefni/vefarastræti",
destination: "https://litasyn.is/verkefni/vefarastræti",
permanent: true,
},
{
source: "/verkefni/blikahöfði5-7",
destination: "https://litasyn.is/verkefni/blikahöfði5-7",
permanent: true,
},
{
source: "/verkefni/fosshótel",
destination: "https://litasyn.is/verkefni/fosshótel",
permanent: true,
},
{
source: "/verkefni/lindex",
destination: "https://litasyn.is/verkefni/lindex",
permanent: true,
},
{
source: "/verkefni/sólvangur",
destination: "https://litasyn.is/verkefni/sólvangur",
permanent: true,
},
{
source: "/verkefni/vegghamrar2-10",
destination: "https://litasyn.is/verkefni/vegghamrar2-10",
permanent: true,
},
]
},
}