forked from Timikcool/learn-web3-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
34 lines (33 loc) · 931 Bytes
/
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
const withTM = require('next-transpile-modules')([
'@project-serum/sol-wallet-adapter',
'@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',
]);
module.exports = withTM({
reactStrictMode: true,
typescript: {
ignoreBuildErrors: true,
},
experimental: {
// Enables the styled-components SWC transform
styledComponents: true,
},
webpack5: true,
webpack: (config, {isServer}) => {
if (!isServer) {
config.resolve.fallback.fs = false;
}
return config;
},
});