wallet-connect-web-examples/dapps/web3modal/react/.codesandbox/tasks.json
Glitch 59b98bcd36
Web3Modal + Wagmi v2 Example in Next.js App Router (#419)
* nextjs project

* new structure under Web3Modal

* Add Web3Modal + Wagmi v2 example in React (#422)

* refactor next

* remove logs

* update example

* add custom button

* add custom button

* Update dapps/web3modal/react/package.json

---------

Co-authored-by: Blessing Samuel <samuelblessing125@gmail.com>
2024-01-25 16:35:15 -03:00

32 lines
645 B
JSON

{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "pnpm install"
}
],
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"dev": {
"name": "dev",
"command": "pnpm dev",
"runAtStart": true,
"preview": {
"port": 5173
}
},
"build": {
"name": "build",
"command": "pnpm build",
"runAtStart": false
},
"preview": {
"name": "preview",
"command": "pnpm preview",
"runAtStart": false
}
}
}