chore: update README for static deployment

This commit is contained in:
Danish Arora 2025-04-16 20:49:53 +05:30
parent 71571dee65
commit c8e0bb696b
No known key found for this signature in database
GPG Key ID: 1C6EF37CDAE1426E
2 changed files with 16 additions and 0 deletions

View File

@ -2,6 +2,21 @@
Application to manage Waku RLN keystores.
## Static Export & Deployment
This app is a fully static site. To build and deploy:
1. Install dependencies:
```sh
npm install
```
2. Build the static site:
```sh
npm run build
```
The static site will be output to the `out/` directory.
3. Deploy the contents of the `out/` directory to any static host (e.g., Netlify, Vercel static, GitHub Pages, S3, etc.).
## Overview
This application provides an interface for managing keystores for Waku's rate-limiting nullifier (RLN) functionality. It integrates with MetaMask for wallet connectivity.

View File

@ -8,6 +8,7 @@ const nextConfig = {
],
},
reactStrictMode: true,
output: 'export',
}
module.exports = nextConfig