forked from whisperrnote/whisperrnote
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.ts
More file actions
137 lines (132 loc) · 3.49 KB
/
next.config.ts
File metadata and controls
137 lines (132 loc) · 3.49 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
eslint: {
ignoreDuringBuilds: false,
},
typescript: {
ignoreBuildErrors: false,
},
transpilePackages: ['@mui/material', '@mui/icons-material', '@emotion/react', '@emotion/styled'],
compress: true,
poweredByHeader: false,
experimental: {
reactCompiler: true,
optimizePackageImports: [
'@mui/material',
'@mui/icons-material',
'@emotion/react',
'@emotion/styled',
'lucide-react',
'lodash-es',
'date-fns',
'framer-motion',
'react-markdown',
],
},
webpack: (config) => {
config.experiments = {
...config.experiments,
asyncWebAssembly: true,
layers: true,
};
config.module.rules.push({
test: /\.wasm$/,
exclude: /node_modules\/next\/dist\/compiled\/@vercel\/og/,
type: "webassembly/async",
});
return config;
},
// 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
{
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",
},
// Force HTTPS (HSTS)
{
key: "Strict-Transport-Security",
value: "max-age=63072000; includeSubDomains; preload",
},
// Prevent DNS Prefetching
{
key: "X-DNS-Prefetch-Control",
value: "on",
},
// XSS Protection
{
key: "X-XSS-Protection",
value: "1; mode=block",
},
],
},
];
},
// async rewrites() {
// return [
// {
// source: '/',
// destination: '/app', // Default to the app subdomain
// has: [
// {
// type: 'host',
// value: 'app.kylrix.space',
// },
// ],
// },
// {
// source: '/',
// destination: '/login', // Route auth subdomain to login page
// has: [
// {
// type: 'host',
// value: 'auth.kylrix.space',
// },
// ],
// },
// {
// source: '/',
// destination: '/send', // Handle send subdomain
// has: [
// {
// type: 'host',
// value: 'send.kylrix.space',
// },
// ],
// },
// // Add more subdomain rewrites as needed
// ];
// },
};
export default nextConfig;