-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.mjs
More file actions
41 lines (39 loc) · 1.08 KB
/
next.config.mjs
File metadata and controls
41 lines (39 loc) · 1.08 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
// @ts-check
/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation.
*/
!process.env.SKIP_ENV_VALIDATION && (await import("./src/env/server.mjs"));
/** @type {import("next").NextConfig} */
const config = {
async redirects() {
return [
{
source: "/:path+/",
destination: "/:path+",
permanent: true,
},
];
},
async headers() {
return [
{
source: "/(.*)?", // Matches all pages
headers: [
{
key: "strict-transport-security",
value: "max-age=63072000; includeSubdomains; preload",
},
{
key: "x-content-type-options",
value: "nosniff",
},
{
key: "x-xss-protection",
value: "1; mode=block",
},
],
},
];
},
};
export default config;