-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
37 lines (36 loc) · 897 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
module.exports = {
webpack: (config, { isServer }) => {
// console.log("config", config);
// console.log("config.node", config.node);
// Fixes npm packages that depend on `fs` module
if (!isServer) {
// if you miss it, all the other options in fallback,
// specified by next.js will be dropped. Doesn't make
// much sense, but how it is the solution
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
};
}
return config;
},
images: {
domains: ["storage.googleapis.com", "lelscans.net"],
},
async rewrites() {
return [
{
source: "/v",
destination: "/v",
},
{
source: "/v/:idManga/:idChapter/:idScan",
destination: "/v",
},
{
source: "/v/:idManga/:idChapter/:idScan/:any",
destination: "/v",
},
];
},
};