This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
124 lines (121 loc) · 2.89 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
const process = require("process");
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
const { withSentryConfig } = require("@sentry/nextjs");
const { i18n } = require("./next-i18next.config");
const config = {
i18n,
images: {
domains: ["images.ctfassets.net"],
},
pwa: {
dest: "public",
disable: process.env.NODE_ENV === "development",
},
webpack: config => {
return config;
},
async redirects() {
return [
{
destination: "/de/ueber-uns",
locale: false,
permanent: true,
source: "/de/about-us",
},
{
destination: "/de/kontakt",
locale: false,
permanent: true,
source: "/de/contact",
},
{
destination: "/de/wunschliste",
locale: false,
permanent: true,
source: "/de/wishlist",
},
{
destination: "/de/rechtliches",
locale: false,
permanent: true,
source: "/de/legal",
},
{
destination: "/de/rechtliches/datenschutz",
locale: false,
permanent: true,
source: "/de/legal/privacy-policy",
},
{
destination: "/de/rechtliches/allgemeine-geschaeftsbedingungen",
locale: false,
permanent: true,
source: "/de/legal/terms-of-service",
},
{
destination: "/de/rechtliches/cookie-richtlinie",
locale: false,
permanent: true,
source: "/de/legal/cookie-policy",
},
];
},
async rewrites() {
return [
{
source: "/sitemap.xml",
destination: "/api/sitemap",
},
{
destination: "/de/wishlist",
locale: false,
source: "/de/wunschliste",
},
{
destination: "/de/about-us",
locale: false,
source: "/de/ueber-uns",
},
{
destination: "/de/contact",
locale: false,
source: "/de/kontakt",
},
{
destination: "/de/legal",
locale: false,
source: "/de/rechtliches",
},
{
destination: "/de/legal/terms-of-service",
locale: false,
source: "/de/rechtliches/allgemeine-geschaeftsbedingungen",
},
{
destination: "/de/legal/privacy-policy",
locale: false,
source: "/de/rechtliches/datenschutz",
},
{
destination: "/de/legal/cookie-policy",
locale: false,
source: "/de/rechtliches/cookie-richtlinie",
},
];
},
};
const SentryWebpackPluginOptions = {
silent: true, // Suppresses all logs
// Additional config options for the Sentry Webpack plugin. Keep in mind that
// the following options are set automatically, and overriding them is not
// recommended:
// release, url, org, project, authToken, configFile, stripPrefix,
// urlPrefix, include, ignore
// For all available options, see:
// https://github.com/getsentry/sentry-webpack-plugin#options.
};
// Make sure adding Sentry options is the last code to run before exporting, to
// ensure that your source maps include changes from all other Webpack plugins
module.exports = withBundleAnalyzer(withSentryConfig(config, SentryWebpackPluginOptions));