-
Notifications
You must be signed in to change notification settings - Fork 0
/
redirects.mjs
55 lines (55 loc) · 1.73 KB
/
redirects.mjs
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
export const redirects = [
{
source: "/ai-tools-for-js-devs",
destination: "/ai-for-js-devs",
permanent: true,
},
{
source: "/10-tools-of-the-trade-for-coffee-shop-work(.*)",
destination: "/posts",
permanent: true,
},
{ source: "/category(.*)", destination: "/posts", permanent: true },
{
source: "/dont-get-attached-programming-languages(.*)",
destination: "/posts",
permanent: true,
},
{ source: "/ethics-for-freelance-programmers(.*)", destination: "/posts", permanent: true },
{ source: "/feed(.*)", destination: "/posts", permanent: true },
{
source: "/fk-you-programmers-arent-confrontational(.*)",
destination: "/posts",
permanent: true,
},
{
source: "/hiring-a-freelance-programmer-do-you-need-one-yet(.*)",
destination: "/posts",
permanent: true,
},
{ source: "/how-to-convert-java(.*)", destination: "/posts", permanent: true },
{
source: "/how-to-get-freelance-programming-work-with-no-experience(.*)",
destination: "/posts",
permanent: true,
},
{ source: "/how-to-pick-a-good-coffice(.*)", destination: "/posts", permanent: true },
{
source: "/javascript-linting-what-developers-need(.*)",
destination: "/posts",
permanent: true,
},
{ source: "/keep-your-swords-sharp(.*)", destination: "/posts", permanent: true },
{ source: "/throw-away-your-code(.*)", destination: "/posts", permanent: true },
{ source: "/what-to-do-when-youre-not-working(.*)", destination: "/posts", permanent: true },
{
source: "/why-your-developers-should-cross-train(.*)",
destination: "/posts",
permanent: true,
},
{
source: "/your-js-is-a-mess-javascript-namespacing(.*)",
destination: "/posts",
permanent: true,
},
];