Skip to content

Commit 7cf44e9

Browse files
authored
Merge pull request #1413 from Web3Auth/vercel/dependencies-for-react-flight-anhlyy
Fix React Server Components RCE vulnerability
2 parents 60d53a2 + 10608be commit 7cf44e9

File tree

4 files changed

+184
-222
lines changed

4 files changed

+184
-222
lines changed

other/starknet-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Visit `http://localhost:3000` in your browser to see the application running.
4242

4343
- [Web3Auth Documentation](https://web3auth.io/docs/connect-blockchain/other/starknet)
4444
- [Starknet.js Documentation](https://starknetjs.com/)
45-
- [Starknet.js Create Account Documentation](https://starknetjs.com/docs/guides/create_account)
45+
- [Starknet.js Create Account Documentation](https://www.starknetjs.com/docs/guides/intro)
4646
- [SDK References](https://web3auth.io/docs/sdk)
4747
- [Developer Dashboard](https://dashboard.web3auth.io)
4848
- [Web3Auth Community](https://web3auth.io/community)
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)