-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathnext.config.js
39 lines (36 loc) · 985 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
const path = require('path');
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
webpack: (config) => {
config.resolve.alias['~'] = path.resolve(__dirname, 'src');
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ['@svgr/webpack'],
});
return config;
},
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
domains: [
'lh3.googleusercontent.com',
'st.nettruyenco.com',
'st.ntcdntempv3.com',
'i331.ntcdntempv26.com',
's4.anilist.co',
'animanlab.online',
'res.cloudinary.com',
'cdn.myanimelist.net',
'kyt-proxy.onrender.com',
],
minimumCacheTTL: 24 * 60 * 60,
},
eslint: {
ignoreDuringBuilds: true,
},
staticPageGenerationTimeout: 5 * 6 * 1000,
};