-
Notifications
You must be signed in to change notification settings - Fork 10
/
next.config.js
27 lines (27 loc) · 1.17 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
module.exports = {
exportPathMap: function () {
return {
'/': { page: '/' },
'/news': { page: '/news' },
'/news/tickets-available': { page: '/news/tickets-available' },
'/news/diversity-and-inclusion': { page: '/news/diversity-and-inclusion' },
'/news/diversity-community-tickets': { page: '/news/diversity-community-tickets' },
'/news/ticket-sales-paused': { page: '/news/ticket-sales-paused' },
'/news/childcare-and-family-tickets': { page: '/news/childcare-and-family-tickets' },
'/news/cfp-closed': { page: '/news/cfp-closed' },
'/about': { page: '/about' },
'/schedule': { page: '/schedule' },
'/sessions': { page: '/sessions' },
'/feedback': { page: '/feedback' },
'/get-involved': { page: '/get-involved' },
'/call-for-speakers': { page: '/call-for-speakers' },
'/code-of-conduct': { page: '/code-of-conduct' },
'/organisers': { page: '/organisers' },
'/accommodation': { page: '/accommodation' },
'/food': { page: '/food' },
'/transport': { page: '/transport' },
'/accessibility': { page: '/accessibility' },
'/sponsors': { page: '/sponsors' }
}
}
}