-
Notifications
You must be signed in to change notification settings - Fork 19
/
next.config.js
66 lines (61 loc) · 2.62 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
const SSRPlugin =
require("next/dist/build/webpack/plugins/nextjs-ssr-import").default;
const { dirname, relative, resolve, join } = require("path");
module.exports = {
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
if (!config.module.rules) config.module.rules = [];
[/\.svg/, /\.xml/].forEach((r) => {
config.module.rules.push({
test: r,
type: "asset/source"
});
});
// This is so hacky, we should remove it once this PR is merged and released: https://github.com/vercel/next.js/pull/26372
// https://github.com/vercel/next.js/issues/22581#issuecomment-864476385
const ssrPlugin = config.plugins.find(
(plugin) => plugin instanceof SSRPlugin
);
if (ssrPlugin) patchSsrPlugin(ssrPlugin);
return config;
},
images: {
disableStaticImages: true
}
};
// Unfortunately there isn't an easy way to override the replacement function body, so we
// have to just replace the whole plugin `apply` body.
function patchSsrPlugin(plugin) {
plugin.apply = function apply(compiler) {
compiler.hooks.compilation.tap("NextJsSSRImport", (compilation) => {
compilation.mainTemplate.hooks.requireEnsure.tap(
"NextJsSSRImport",
(code, chunk) => {
// This is the block that fixes https://github.com/vercel/next.js/issues/22581
if (!chunk.name) {
return;
}
// Update to load chunks from our custom chunks directory
const outputPath = resolve("/");
const pagePath = join("/", dirname(chunk.name));
const relativePathToBaseDir = relative(
pagePath,
outputPath
);
// Make sure even in windows, the path looks like in unix
// Node.js require system will convert it accordingly
const relativePathToBaseDirNormalized =
relativePathToBaseDir.replace(/\\/g, "/");
return code
.replace(
'require("./"',
`require("${relativePathToBaseDirNormalized}/"`
)
.replace(
"readFile(join(__dirname",
`readFile(join(__dirname, "${relativePathToBaseDirNormalized}"`
);
}
);
});
};
}