forked from GuancheGamer/landing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.mjs
More file actions
83 lines (79 loc) · 2.49 KB
/
Copy pathnext.config.mjs
File metadata and controls
83 lines (79 loc) · 2.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
import locales from './src/const/locales.mjs';
import svgr from 'next-plugin-svgr';
import withPlugins from 'next-compose-plugins';
import images from 'next-images';
import { globby } from 'globby';
import { join, relative } from 'path';
import { withNextBanner } from 'next-banner';
export const defaultLocale = 'en';
export const nextConfig = {
trailingSlash: true,
i18n: {
locales,
defaultLocale,
},
experimental: {
outputStandalone: true,
// this is to prevent translation API key from getting rate limited
// this does mean the non-translated pages build slower, but eh.
cpus: 1,
workerThreads: false,
},
async headers() {
// https://stackoverflow.com/questions/62077589/setting-cache-control-header-for-static-file-serving-on-nextjs-default-server
return [
{
source: '/:all*(svg|jpg|png)',
locale: false,
headers: [
{
key: 'Cache-Control',
value: 'public, max-age=7200, must-revalidate',
},
],
},
{
source: '/:all*(json)',
locale: false,
headers: [
{
key: 'Cache-Control',
value: 'max-age=31536000, public, stale-while-revalidate',
},
],
},
];
},
async redirects() {
// Redirects public files that were accidentally prefixed with a locale.
const paths = await globby('./public/**/*', { expandDirectories: false });
return locales.flatMap((locale) =>
locale !== defaultLocale
? paths.map((path) => {
const relativePath = join('/', relative('./public', path));
return {
source: `/${locale}${relativePath}`,
destination: relativePath,
permanent: false,
locale: false,
};
})
: []
);
},
};
export default withPlugins(
[
[
withNextBanner,
{
nextBanner: {
domain: 'https://plutonium.pw',
},
},
],
svgr,
[images, { fileExtensions: ['jpg', 'jpeg', 'png', 'gif'] }],
],
nextConfig
);