-
Notifications
You must be signed in to change notification settings - Fork 12
/
next.config.js
61 lines (55 loc) · 1.39 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
/** @type {import('next').NextConfig} */
const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
const withTM = require("next-transpile-modules")([
"monaco-editor",
"@tact-lang/opcode",
]);
const webpack = require("webpack");
const nextConfig = withTM({
reactStrictMode: true,
images: {
unoptimized: true,
},
webpack: (config, options) => {
config.resolve.fallback = { fs: false };
config.resolve.alias = {
...config.resolve.alias,
vscode: require.resolve(
"@codingame/monaco-languageclient/lib/vscode-compatibility",
),
};
config.resolve.extensions.push(".js");
config.plugins.push(
new webpack.NormalModuleReplacementPlugin(/^node:/, (resource) => {
resource.request = resource.request.replace(/^node:/, "");
}),
);
if (!options.isServer) {
config.plugins.push(
new MonacoWebpackPlugin({
languages: ["typescript", "json"],
filename: "static/[name].worker.js",
}),
);
}
return config;
},
async headers() {
return [
{
source: "/(.*)",
headers: [
{
key: "Cross-Origin-Embedder-Policy",
value: "credentialless",
},
{
key: "Cross-Origin-Opener-Policy",
value: "same-origin",
},
],
},
];
},
});
module.exports = nextConfig;