-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
125 lines (113 loc) · 2.76 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
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
// #region NEXT.JS TYPES HACK
// TODO remove writeAppTypeDeclarations redeclare when this bug will be fixed: https://github.com/vercel/next.js/pull/30060
const fs = require('fs');
const os = interopRequireDefault(require('os'));
const nextTypesDeclarations = require('next/dist/lib/typescript/writeAppTypeDeclarations.js');
const originalWriteAppTypeDeclarations = nextTypesDeclarations.writeAppTypeDeclarations;
nextTypesDeclarations.writeAppTypeDeclarations = async (...args) => {
await originalWriteAppTypeDeclarations(...args);
const nextEnvFileContent = fs.readFileSync('next-env.d.ts', 'utf-8');
const newFileContent = nextEnvFileContent.replace(
'/// <reference types="next/image-types/global" />' + os.default.EOL,
'',
);
fs.writeFileSync('next-env.d.ts', newFileContent, 'utf-8');
};
// #endregion
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
const getPlugins = webpack => [
new webpack.IgnorePlugin({
resourceRegExp: /^scrypt$/,
}),
new webpack.IgnorePlugin({
resourceRegExp: /^\.\/locale$/,
contextRegExp: /moment$/,
}),
];
const rules = [
/* {
test: /\.(ttf|eot|otf|woff(2)?)(\?[a-z0-9]+)?$/,
use: {
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]',
publicPath: '/_next/static',
outputPath: 'static',
},
},
}, */
{
test: /\.(pdf)/,
use: {
loader: 'file-loader',
options: {
name: 'docs/[name].[ext]',
publicPath: '/_next/static',
outputPath: 'static',
},
},
},
/* {
use: {
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]',
publicPath: '/_next/static',
outputPath: 'static',
},
},
}, */
{
test: /\.(html)/,
use: {
loader: 'file-loader',
options: {
name: '[name].[ext]',
publicPath: '/_next/static',
outputPath: 'static',
},
},
},
];
const securityHeaders = [
{
key: 'X-XSS-Protection',
value: '1; mode=block',
},
{
key: 'X-Frame-Options',
value: 'SAMEORIGIN',
},
];
module.exports = withBundleAnalyzer({
webpack: (config, { webpack }) => {
config.plugins.push(...getPlugins(webpack));
config.module.rules.push(...rules);
config.resolve.symlinks = false;
return config;
},
i18n: {
locales: ['en'],
defaultLocale: 'en',
},
pageExtensions: ['page.ts', 'page.tsx'],
webpack5: true,
async headers() {
return [
{
// Apply these headers to all routes in your application.
source: '/(.*)',
headers: securityHeaders,
},
];
},
});
function interopRequireDefault(obj) {
return obj && obj.__esModule
? obj
: {
default: obj,
};
}