-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.js
112 lines (111 loc) · 2.16 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
const withSass = require('@zeit/next-sass');
module.exports = withSass({
exportPathMap: function () {
return {
'/': {
page: '/',
query: {
title: "IMS Lab"
}
},
'/en': {
page: '/',
query: {
title: "IMS Lab",
lang: 'en'
}
},
'/research': {
page: '/research',
query: {
title: "研究 - IMS Lab"
}
},
'/en/research': {
page: '/research',
query: {
title: "Research - IMS Lab",
lang: 'en'
}
},
'/professor': {
page: '/professor',
query: {
title: "指導教授 - IMS Lab"
}
},
'/en/professor': {
page: '/professor',
query: {
title: "Professor - IMS Lab",
lang: 'en'
}
},
'/student': {
page: '/member',
query: {
title: "學生 - IMS Lab"
}
},
'/en/student': {
page: '/member',
query: {
title: "Students - IMS Lab",
lang: 'en'
}
},
'/alumni': {
page: '/member',
query: {
title: "學成下山 - IMS Lab"
}
},
'/en/alumni': {
page: '/member',
query: {
title: "Alumni - IMS Lab",
lang: 'en'
}
},
'/honor': {
page: '/honor',
query: {
title: "榮譽 - IMS Lab"
}
},
'/en/honor': {
page: '/honor',
query: {
title: "Honors - IMS Lab",
lang: 'en'
}
},
'/resource': {
page: '/resource',
query: {
title: "相關資源 - IMS Lab"
}
},
'/en/resource': {
page: '/resource',
query: {
title: "Resource - IMS Lab",
lang: 'en'
}
},
'/contact': {
page: '/contact',
query: {
title: "聯絡我們 - IMS Lab"
}
},
'/en/contact': {
page: '/contact',
query: {
title: "Contact - IMS Lab",
lang: 'en'
}
}
}
}
});