-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathnext.config.js
121 lines (112 loc) · 3.71 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/** @type {import('next').NextConfig} */
// const SSRPlugin = require("next/dist/build/webpack/plugins/nextjs-ssr-import")
// .default;
// const { dirname, relative, resolve, join } = require("path");
const conf = {
reactStrictMode: false,
swcMinify: true,
async redirects() {
return [
{
source: "/github",
destination: "https://github.com/Nutlope/twitterbio",
permanent: false,
},
{
source: "/deploy",
destination: "https://vercel.com/templates/next.js/twitter-bio",
permanent: false,
},
];
},
images: {
unoptimized: true,
},
experimental: {
// layers: true,
},
transpilePackages: ['antd-mobile'],
webpack(config, { isServer, dev }) {
// Enable webassembly
config.experiments = { ...config.experiments, asyncWebAssembly: true, layers: true };
if (isServer) {
config.output.webassemblyModuleFilename =
'../static/wasm/[modulehash].wasm';
} else {
config.output.webassemblyModuleFilename =
'static/wasm/[modulehash].wasm';
}
// 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}"`
);
}
);
});
};
}
// In prod mode and in the server bundle (the place where this "chunks" bug
// appears), use the client static directory for the same .wasm bundle
// config.output.webassemblyModuleFilename =
// isServer && !dev ? "../static/wasm/[id].wasm" : "static/wasm/[id].wasm";
// Ensure the filename for the .wasm bundle is the same on both the client
// and the server (as in any other mode the ID's won't match)
// config.optimization.moduleIds = "named";
config.resolve = {
...config.resolve,
fallback: {
async_hooks: false,
},
}
if (!isServer) {
config.resolve = {
...config.resolve,
fallback: {
...config.resolve.fallback,
// fixes proxy-agent dependencies
net: false,
stream: false,
dns: false,
tls: false,
assert: false,
// fixes next-i18next dependencies
path: false,
fs: false,
// fixes mapbox dependencies
events: false,
// fixes sentry dependencies
process: false
}
}
}
return config;
},
};
module.exports = conf;