-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.mjs
84 lines (74 loc) · 1.98 KB
/
next.config.mjs
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
/** @typedef {import('next').NextConfig} NextConfig */
/** @typedef {import('webpack').Configuration} WebpackConfig */
/** @typedef {import('~/config/i18n.config').Locale} Locale */
import createBundleAnalyzer from '@next/bundle-analyzer';
import { log } from '@stefanprobst/log';
const defaultLocale = /** @type {Locale} */ 'en';
const locales = /** @type {Array<Locale>} */ (['en']);
/** @type {NextConfig} */
const config = {
eslint: {
dirs: [process.cwd()],
ignoreDuringBuilds: true,
},
headers() {
const headers = [
{
source: '/:path*',
headers: [
{
key: 'X-DNS-Prefetch-Control',
value: 'on',
},
],
},
{
source: '/assets/fonts/:path*',
headers: [
{
key: 'Cache-Control',
value: 'public, immutable, max-age=31536000',
},
],
},
];
headers.push({
source: '/:path*',
headers: [
{
key: 'X-Robots-Tag',
value: 'noindex, nofollow',
},
],
});
log.warn('Indexing by search engines is disallowed.');
return Promise.resolve(headers);
},
i18n: {
defaultLocale,
locales,
},
pageExtensions: ['page.tsx', 'api.ts'],
reactStrictMode: true,
output: 'standalone',
typescript: {
ignoreBuildErrors: true,
},
webpack(/** @type {WebpackConfig} */ config) {
/* eslint-disable no-param-reassign */
config.experiments = config.experiments ?? {};
config.experiments.topLevelAwait = true;
config.resolve = config.resolve ?? {};
config.resolve.alias = {
...config.resolve.alias,
'mapbox-gl': 'maplibre-gl',
};
/* eslint-enable no-param-reassign */
return config;
},
};
/** @type {Array<(config: NextConfig) => NextConfig>} */
const plugins = [createBundleAnalyzer({ enabled: process.env['BUNDLE_ANALYZER'] === 'enabled' })];
export default plugins.reduce((config, plugin) => {
return plugin(config);
}, config);