SB
Asked
Im trying to add more options to the settings page, where i have added a new input box, how to i re-compile the project so i can see the changes?
- MSAnsweredHello,
You can run `npm i` to install dependencies then
```sh
npm run dev # for development
npm run build # for production
```
Thank you - Login to Reply