-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
40 lines (39 loc) · 1.21 KB
/
gatsby-node.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
exports.createPages = ({ actions }) => {
const { createRedirect } = actions
createRedirect({
fromPath: "/tickets",
toPath: "http://www.iticket.co.nz/events/2024/aug/phineas-and-ferb",
isPermanent: true,
redirectInBrowser: true,
force: true,
})
createRedirect({
fromPath: "/lecture",
toPath: "https://www.canva.com/design/DAGM4R5kKPQ/e-Py2AdNzHGmpZ6H_E6bfg/edit?utm_content=DAGM4R5kKPQ&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton",
isPermanent: true,
redirectInBrowser: true,
force: true,
})
// createRedirect({
// fromPath: "/crew",
// toPath: "https://forms.gle/HUXL5Xg3xZCihPJi9",
// isPermanent: true,
// redirectInBrowser: true,
// force: true,
// })
// createRedirect({
// fromPath: "/tickets",
// toPath: "http://www.iticket.co.nz/events/2023/aug/engineering-revue",
// isPermanent: true,
// redirectInBrowser: true,
// force: true,
// })
// createRedirect({
// fromPath: "/ticket",
// toPath: "http://www.iticket.co.nz/events/2023/aug/engineering-revue",
// isPermanent: true,
// redirectInBrowser: true,
// force: true,
// })
// ^^ update these links once you've set up the tickets!
}