Skip to content

Commit c82ee3b

Browse files
committed
chore: Update Web3Auth Modal and development dependencies, and add webpack aliases for pino-pretty and async-storage.
1 parent 42991aa commit c82ee3b

File tree

3 files changed

+142
-180
lines changed

3 files changed

+142
-180
lines changed
Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
3-
reactStrictMode: true,
4-
// swcMinify: true,
5-
}
6-
7-
module.exports = nextConfig
3+
reactStrictMode: true,
4+
// swcMinify: true,
5+
webpack: (config) => {
6+
config.resolve.alias = {
7+
...config.resolve.alias,
8+
"pino-pretty": false,
9+
"@react-native-async-storage/async-storage": false,
10+
};
11+
return config;
12+
},
13+
};
14+
module.exports = nextConfig

0 commit comments

Comments
 (0)