Template for a decentralized application (dApp) built in Next.
These commands start the application in development mode. Open http://localhost:3000 in your browser to see the result. The page auto-updates as you edit the file.
npm run dev
# or
yarn dev
# or
pnpm dev
These commands build an optimized version of the application for production, saved in the .next
folder.
npm run build
# or
yarn build
# or
pnpm build
After building the application, use these commands to start the server in production mode.
npm run start
# or
yarn start
# or
pnpm start
Run these commands to start the linter, which helps maintain code quality and find any issues.
npm run lint
# or
yarn lint
# or
pnpm lint