-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
40 lines (38 loc) · 838 Bytes
/
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
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
});
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
staticPageGenerationTimeout: 1000,
images: {
unoptimized: true, // for cloudflare pages
domains: ['icons.llama.fi', 'assets.coingecko.com', 'icons.llamao.fi']
},
compiler: {
styledComponents: true
},
async headers() {
return [
{
source: '/:path*',
headers: [
{
key: 'Access-Control-Allow-Origin',
value: '*'
},
{
key: 'Access-Control-Allow-Methods',
value: 'GET'
},
{
key: 'Access-Control-Allow-Headers',
value: 'X-Requested-With, content-type, Authorization'
}
]
}
];
},
experimental: {}
};
module.exports = withBundleAnalyzer(nextConfig);