im using nextjs 13 and i follow their nextjs guide step and step. eventually i get this error
./pages/index.tsx">
error - ./node_modules/@web3auth/wallet-connect-v1-adapter/dist/walletConnectV1Adapter.esm.js:2:0
Module not found: Can’t resolve ‘@walletconnect/client’
Import trace for requested module:
./node_modules/@web3auth/modal/dist/modal.esm.js
./pages/index.tsx
i try next 12 same result, i tried vuejs same, reactjs same.
this is my package.json
{ "name": "i-took-almost-a-week-to-install-web3auth", "version": "0.0.9999", "private": true, "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint" }, "dependencies": { "@web3auth/base": "^4.4.0", "@web3auth/modal": "^4.4.2", "@web3auth/openlogin-adapter": "^4.4.2", "web3": "^1.8.2", "i18n": "^0.15.1", "next": "^12.3.1", "react": "18", "react-dom": "18" }, "devDependencies": { "@types/elliptic": "^6.4.14", "@types/node": "17.0.35", "@types/react": "18.0.9", "@types/react-dom": "18.0.4", "eslint": "8.15.0", "eslint-config-next": "12.1.6", "typescript": "4.6.4" } }
Originally posted by: e8ward
Check the discussion at: https://github.com/orgs/Web3Auth/discussions/1359