forked from jahirfiquitiva/jahir.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
66 lines (61 loc) · 1.64 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
/* eslint-disable @typescript-eslint/no-var-requires */
const path = require('path');
const million = require('million/compiler');
const { withContentlayer } = require('next-contentlayer');
const appHeaders = require('./config/next/headers');
const redirects = require('./config/next/redirects');
/**
* @type {import('next').NextConfig}
*/
const defaultNextConfig = {
swcMinify: true,
reactStrictMode: true,
compress: true,
crossOrigin: 'anonymous',
experimental: {
newNextLinkBehavior: true,
legacyBrowsers: false,
typedRoutes: true,
serverActions: true,
},
compiler: {
removeConsole: {
exclude: ['error'],
},
},
sassOptions: {
includePaths: [path.join(__dirname, 'src/styles')],
},
images: {
remotePatterns: [
{ hostname: 'images.unsplash.com' },
{ hostname: 'i.scdn.co' },
{ hostname: 'spotify.com' },
{ hostname: 'jahir.dev' },
{ hostname: 'unavatar.io' },
{ hostname: 'source.boringavatars.com' },
{ hostname: 'lh3.googleusercontent.com' },
{ hostname: 'cdn.discordapp.com' },
{ hostname: 'raw.githubusercontent.com' },
{ hostname: 'avatars.githubusercontent.com' },
{ hostname: '**.cdninstagram.com' },
{ hostname: '**.pixpa.com' },
{ hostname: '**.fbcdn.net' },
],
dangerouslyAllowSVG: true,
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
},
async headers() {
return appHeaders;
},
async redirects() {
return redirects;
},
};
const millionConfig = {
auto: { rsc: true },
};
module.exports = million.next(
withContentlayer(defaultNextConfig),
millionConfig,
);