-
Notifications
You must be signed in to change notification settings - Fork 181
/
next.config.js
58 lines (53 loc) · 1.5 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
/** @type {import('next').NextConfig} */
const withPlugins = require("next-compose-plugins");
/** eslint-disable @typescript-eslint/no-var-requires */
const withTM = require("next-transpile-modules")([
"@solana/wallet-adapter-base",
// Uncomment wallets you want to use
// "@solana/wallet-adapter-bitpie",
// "@solana/wallet-adapter-coin98",
// "@solana/wallet-adapter-ledger",
// "@solana/wallet-adapter-mathwallet",
"@solana/wallet-adapter-phantom",
"@solana/wallet-adapter-react",
"@solana/wallet-adapter-solflare",
// "@solana/wallet-adapter-sollet",
// "@solana/wallet-adapter-solong",
// "@solana/wallet-adapter-torus",
"@solana/wallet-adapter-wallets",
// "@project-serum/sol-wallet-adapter",
// "@solana/wallet-adapter-ant-design",
]);
// add this if you need LESS
// also install less and less-loader
// const withLess = require("next-with-less");
const plugins = [
// add this if you need LESS
// [withLess, {
// lessLoaderOptions: {
// /* ... */
// },
// }],
[
withTM,
{
webpack5: true,
reactStrictMode: true,
},
],
];
const nextConfig = {
distDir: "build",
swcMinify: true,
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.fallback.fs = false;
// FIX this
// Disable minimize to make it work with Candy Machine template
// minimization brakes Public Key names
config.optimization.minimize = false;
}
return config;
},
};
module.exports = withPlugins(plugins, nextConfig);