-
Notifications
You must be signed in to change notification settings - Fork 1
/
next.config.js
49 lines (46 loc) · 1.17 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
/** @type {import('next').NextConfig} */
const CopyPlugin = require("copy-webpack-plugin");
const path = require("path");
const nextConfig = {
reactStrictMode: false,
swcMinify: true,
images: {
unoptimized: true,
},
publicRuntimeConfig: {
basePath: "",
},
compiler: {
removeConsole: false,
},
webpack: (config, { isServer }) => {
config.plugins.push(
new CopyPlugin({
patterns: [
{
from: path.join(
__dirname,
"node_modules/@trustwallet/wallet-core/dist/lib/wallet-core.wasm"
),
to: path.join(__dirname, ".next/static/chunks/pages"),
},
],
})
);
config.experiments.asyncWebAssembly = true;
if (!isServer) {
config.output.publicPath = `/_next/`;
} else {
config.output.publicPath = `./`;
}
config.resolve.fallback = { fs: false };
config.output.assetModuleFilename = `node_modules/@trustwallet/dist/lib/wallet-core.wasm`;
config.module.rules.push({
test: /\.(wasm)$/,
type: "asset/resource",
});
return config;
},
transpilePackages: ["@lens-protocol"],
};
module.exports = nextConfig;