forked from whisperrnote/whisperrkeep
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.ts
More file actions
107 lines (103 loc) · 2.95 KB
/
next.config.ts
File metadata and controls
107 lines (103 loc) · 2.95 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
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
eslint: {
ignoreDuringBuilds: false,
},
typescript: {
ignoreBuildErrors: false,
},
compress: true,
experimental: {
reactCompiler: true,
optimizePackageImports: [
'@mui/material',
'@mui/icons-material',
'lodash',
'lodash-es',
'date-fns',
'framer-motion',
'lucide-react',
],
},
// Security Headers
async headers() {
return [
{
source: "/:path*",
headers: [
// Content Security Policy
{
key: "Content-Security-Policy",
value: [
"default-src 'self'",
"script-src 'self' 'unsafe-inline' 'unsafe-eval' *.kylrix.space",
"style-src 'self' 'unsafe-inline' https://api.fontshare.com",
"img-src 'self' data: https:",
"font-src 'self' data: https://api.fontshare.com",
"object-src 'none'",
"connect-src 'self' https://*.kylrix.space https://*.appwrite.io https://*.appwrite.global",
"frame-ancestors 'self' https://*.kylrix.space",
"base-uri 'self'",
"form-action 'self'",
"upgrade-insecure-requests",
].join("; "),
},
// Prevent clickjacking while allowing same-origin/ecosystem framing
{
key: "X-Frame-Options",
value: "SAMEORIGIN",
},
// Prevent MIME type sniffing
{
key: "X-Content-Type-Options",
value: "nosniff",
},
// Control referrer information
{
key: "Referrer-Policy",
value: "strict-origin-when-cross-origin",
},
// Permissions Policy (formerly Feature Policy)
{
key: "Permissions-Policy",
value: [
"camera=()",
"microphone=()",
"geolocation=()",
"interest-cohort=()",
"payment=()",
"usb=()",
"magnetometer=()",
"accelerometer=()",
"gyroscope=()",
].join(", "),
},
// Force HTTPS (HSTS)
{
key: "Strict-Transport-Security",
value: "max-age=63072000; includeSubDomains; preload",
},
// Prevent DNS Prefetching
{
key: "X-DNS-Prefetch-Control",
value: "on",
},
// Restrict Adobe Flash and PDF (legacy)
{
key: "X-Permitted-Cross-Domain-Policies",
value: "none",
},
// XSS Protection (legacy, but doesn't hurt)
{
key: "X-XSS-Protection",
value: "1; mode=block",
},
],
},
];
},
// Additional security configurations
poweredByHeader: false, // Remove X-Powered-By header
};
export default nextConfig;