-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
73 lines (70 loc) · 1.92 KB
/
next.config.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import createNextIntlPlugin from "next-intl/plugin"
const withNextIntl = createNextIntlPlugin()
/** @type {import('next').NextConfig} */
const nextConfig = {
async redirects() {
return [
{
source: "/accesibilidad-github-actions",
destination: "/blog/accesibilidad-github-actions",
permanent: true,
},
{
source: "/accessibility-github-actions",
destination: "/blog/accessibility-github-actions",
permanent: true,
},
{
source: "/accesibilidad-con-storybook",
destination: "/blog/accesibilidad-con-storybook",
permanent: true,
},
{
source: "/accessibility-with-storybook",
destination: "/blog/accessibility-with-storybook",
permanent: true,
},
{
source: "/testing-web-accessibility-part-1",
destination: "/blog/testing-web-accessibility-part-1",
permanent: true,
},
{
source: "/testing-web-accessibility-part-2",
destination: "/blog/testing-web-accessibility-part-2",
permanent: true,
},
{
source: "/testing-web-accessibility-part-3",
destination: "/blog/testing-web-accessibility-part-3",
permanent: true,
},
{
source: "/las-5-reglas-de-aria",
destination: "/blog/las-5-reglas-de-aria",
permanent: true,
},
{
source: "/wcag-3-0",
destination: "/blog/wcag-3-0",
permanent: true,
},
{
source: "/testeando-accesibilidad-web",
destination: "/blog/testeando-accesibilidad-web",
permanent: true,
},
{
source: "/react-puxl-icons-es",
destination: "/blog/react-puxl-iconos",
permanent: true,
},
{
source: "/react-puxl-icons",
destination: "/blog/react-puxl-icons",
permanent: true,
},
]
},
}
export default withNextIntl(nextConfig)