Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion other/starknet-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Visit `http://localhost:3000` in your browser to see the application running.

- [Web3Auth Documentation](https://web3auth.io/docs/connect-blockchain/other/starknet)
- [Starknet.js Documentation](https://starknetjs.com/)
- [Starknet.js Create Account Documentation](https://starknetjs.com/docs/guides/create_account)
- [Starknet.js Create Account Documentation](https://www.starknetjs.com/docs/guides/intro)
- [SDK References](https://web3auth.io/docs/sdk)
- [Developer Dashboard](https://dashboard.web3auth.io)
- [Web3Auth Community](https://web3auth.io/community)
Expand Down
17 changes: 12 additions & 5 deletions quick-starts/nextjs-quick-start/next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// swcMinify: true,
}

module.exports = nextConfig
reactStrictMode: true,
// swcMinify: true,
webpack: (config) => {
config.resolve.alias = {
...config.resolve.alias,
"pino-pretty": false,
"@react-native-async-storage/async-storage": false,
};
return config;
},
};
module.exports = nextConfig
Loading