-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
executable file
·54 lines (49 loc) · 1.18 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
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: [
"picsum.photos",
"tailwindcss.com",
"trolyao.vpbank.com.vn",
"openweathermap.org",
"localhost",
"vpbank-clone.vercel.app",
],
},
};
const securityHeaders = [
// This header controls DNS prefetching, allowing browsers to proactively perform domain name resolution on external links, images, CSS, JavaScript, and more.
{
key: "X-DNS-Prefetch-Control",
value: "on",
},
// This header stops pages from loading when they detect reflected cross-site scripting (XSS) attacks.
{
key: "X-XSS-Protection",
value: "1; mode=block",
},
// This can prevent against clickjacking attacks.
{
key: "X-Frame-Options",
value: "SAMEORIGIN",
},
];
module.exports = {
async headers() {
return [
{
// Apply these headers to all routes in your application.
source: "/:path*",
headers: securityHeaders,
},
];
},
};
module.exports = {
basePath: "/vpbank-clone",
};
const withImages = require("next-images");
module.exports = withImages();
module.exports = nextConfig;