This repository was archived by the owner on Mar 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.js
More file actions
108 lines (107 loc) · 3.4 KB
/
next.config.js
File metadata and controls
108 lines (107 loc) · 3.4 KB
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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
minimumCacheTTL: 2678400, // 31 days
qualities: [75, 85],
remotePatterns: [
{
protocol: "http",
hostname: "localhost",
port: "1337",
},
{
protocol: "https",
hostname: "res.cloudinary.com",
port: "",
pathname: "/svwalddorf/**",
},
],
},
async redirects() {
return [
{
source: "/der-verein/veranstaltungen/9m-turnier",
destination: "/event/2024-01-13-9m-turnier",
permanent: true,
},
{
source: "/der-verein/neuigkeiten-und-berichte",
has: [{ type: "query", key: "cHash", value: "5965e52c0f5f2257494cd96e040b8135" }],
destination: "/article/2023-08-14-wiedereroeffnung-sportgaststaette-weiherwiesen",
permanent: true,
},
{
source: "/der-verein/neuigkeiten-und-berichte",
has: [{ type: "query", key: "cHash", value: "531eb1222319725cd30074581f3d7bec" }],
destination: "/article/2023-06-25-relegationsspiel-am-25-juni-1200-zuschauer-in-den-weiherwiesen",
permanent: true,
},
{
source: "/der-verein/neuigkeiten-und-berichte",
has: [{ type: "query", key: "cHash", value: "16ef198e337db18f897b69be3222f49c" }],
destination: "/article/2023-06-22-informationen-zum-relegationsspiel-sv-wurmlingen-fc-roemerstein",
permanent: true,
},
{
source: "/der-verein/neuigkeiten-und-berichte",
has: [{ type: "query", key: "cHash", value: "1e7f109bd41aabef87d0f11c03d78401" }],
destination: "/article/2023-06-06-herzlichen-dank-fuer-herausragendes-vereins-engagement",
permanent: true,
},
{
source: "/der-verein/neuigkeiten-und-berichte",
has: [{ type: "query", key: "cHash", value: "07ed940a1cfe55690e0a98f177f9bb64" }],
destination: "/article/2023-06-01-ronja-unsere-neue-uebungsleiterin-im-teendance",
permanent: true,
},
{
source: "/der-verein/neuigkeiten-und-berichte",
has: [{ type: "query", key: "cHash", value: "86fd9465e8d7a1bdff1e520abc7d297e" }],
destination: "/article/2023-03-31-trainerwechsel-bei-unserer-ersten-mannschaft",
permanent: true,
},
{
source: "/fileadmin/user_upload/2023/2023-07-23_Mitteilungsblatt_S3_ganze_Seite.pdf",
destination: "/download/2023-07-23_Sportwoche_des_SV_Walddorf.pdf",
permanent: true,
},
{
source: "/fussball/aktive-2",
destination: "/fussball/aktive",
permanent: true,
},
{
source: "/fussball/hobbykicker-/-ah",
destination: "/fussball/hobbykicker",
permanent: true,
},
{
source: "/fussball/damen",
destination: "/fussball/frauen",
permanent: true,
},
{
source: "/verein/satzung",
destination: "/verein/formales",
permanent: true,
},
{
source: "/verein/geschaeftsordnung",
destination: "/verein/formales",
permanent: true,
},
{
source: "/verein/jugendschutzordnung",
destination: "/verein/formales",
permanent: true,
},
{
source: "/verein/svw-blaettle-reinschauen",
destination: "/verein/svw-blaettle",
permanent: true,
},
];
},
};
module.exports = nextConfig;