-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
97 lines (93 loc) · 2.24 KB
/
next.config.js
File metadata and controls
97 lines (93 loc) · 2.24 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
const ContentSecurityPolicy = `
default-src 'self';
style-src 'self' 'unsafe-inline' unpkg.com;
script-src 'self' 'unsafe-eval';
img-src 'self' avatar.oxro.io;
`;
const securityHeaders = [
{
key: "Strict-Transport-Security",
value: "max-age=31536000; includeSubDomains",
},
{
key: "X-Frame-Options",
value: "SAMEORIGIN",
},
{
key: "X-Content-Type-Options",
value: "nosniff",
},
{
key: "Referrer-Policy",
value: "strict-origin-when-cross-origin",
},
{
key: "Permissions-Policy",
value: "",
},
/* {
key: "Content-Security-Policy",
value: ContentSecurityPolicy.replace(/\s{2,}/g, " ").trim(),
},*/
];
const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
module.exports = withBundleAnalyzer({
webpack(config, { buildId, dev, isServer, defaultLoaders, webpack }) {
if (!dev && !isServer) {
config.plugins.push(
new webpack.IgnorePlugin({
resourceRegExp: /^\.\/wordlists\/(?!english)/,
contextRegExp: /bip39\/src$/,
})
);
}
config.cache.buildDependencies.mydeps = ["./yarn.lock"];
return config;
},
poweredByHeader: false,
productionBrowserSourceMaps: process.env.ANALYZE === "true",
images: {
loader: "imgix",
path: process.env.NEXT_PUBLIC_IMAGES_URL,
},
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
...(process.env.NODE_ENV === "production"
? {
compiler: {
removeConsole: {
exclude: ["error"],
},
reactRemoveProperties: { properties: ["^data-test$"] },
},
}
: {}),
async rewrites() {
return [
{
source: "/api/faucet",
destination: process.env.NEXT_PUBLIC_FAUCET_URL,
}
];
},
async headers() {
return [
{
source: "/(.*)",
headers: securityHeaders,
},
];
},
async generateBuildId() {
const { determineBuildId } = await import("./scripts/build-id.mjs");
const fs = await import("fs");
let buildId = await determineBuildId();
fs.writeFileSync("./seo/build-id", buildId);
return buildId;
},
});