File tree Expand file tree Collapse file tree 4 files changed +184
-222
lines changed
quick-starts/nextjs-quick-start Expand file tree Collapse file tree 4 files changed +184
-222
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 11/** @type {import('next').NextConfig } */
22const 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
You can’t perform that action at this time.
0 commit comments