-
Notifications
You must be signed in to change notification settings - Fork 4
/
next.config.js
81 lines (77 loc) · 2.08 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
/** @type {import('next').NextConfig} */
const withPlugins = require("next-compose-plugins");
const webpack = require("webpack");
/** eslint-disable @typescript-eslint/no-var-requires */
const withTM = require("next-transpile-modules")([
"@solana/wallet-adapter-base",
"web3",
"@solana/wallet-adapter-phantom",
"@solana/wallet-adapter-react",
"@solana/wallet-adapter-solflare",
"@solana/wallet-adapter-wallets",
// "@project-serum/sol-wallet-adapter",
// "@solana/wallet-adapter-slope",
// "@solana/wallet-adapter-bitkeep",
// "@solana/wallet-adapter-bitpie",
// "@solana/wallet-adapter-blocto",
// "@solana/wallet-adapter-clover",
// "@solana/wallet-adapter-coin98",
// "@solana/wallet-adapter-coinhub",
// "@solana/wallet-adapter-ledger",
// "@solana/wallet-adapter-mathwallet",
// "@solana/wallet-adapter-react-ui",
// "@solana/wallet-adapter-safepal",
// "@solana/wallet-adapter-sollet",
// "@solana/wallet-adapter-solong",
// "@solana/wallet-adapter-tokenpocket",
// "@solana/wallet-adapter-torus",
"three",
"@react-three/drei"
]);
const plugins = [
[
withTM,
{
webpack5: true,
reactStrictMode: true,
},
],
];
const nextConfig = {
distDir: "build",
swcMinify: false,
typescript: {
ignoreBuildErrors: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
{
protocol: "http",
hostname: "**",
},
],
},
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.fallback.fs = false;
config.resolve.alias = {
...config.resolve.alias,
"react/jsx-dev-runtime": "react/jsx-dev-runtime.js",
"react/jsx-runtime": "react/jsx-runtime.js"
}
// FIX this
// Disable minimize to make it work with Candy Machine template
// minimization brakes Public Key names
config.optimization.minimize = false;
}
config.plugins.push(new webpack.IgnorePlugin({
resourceRegExp: /^electron$/
}));
return config;
},
};
module.exports = withPlugins(plugins, nextConfig);