This website is built using Docusaurus, a modern static website generator.
Please read our Contributing Guide before submitting any changes.
- Node.js (v18+)
- npm
- Fork the repository on GitHub
- Clone your fork:
git clone https://github.com/<your-username>/reshapr.io.git
cd reshapr.io- Install dependencies:
npm installNote: this project uses
patch-package(viapostinstall) to apply a small compatibility patch forreact-loadable-ssr-addon-v5-slorberand avoid Node.jsDEP0169deprecation warnings during build.
- Start the local development server:
npm run startThis opens a browser window at http://localhost:3000. Most changes are
reflected live without restarting the server.
- Create a new branch:
git checkout -b your-branch-name - Make your changes
- Commit with signoff using Conventional Commits:
git commit -s -m "docs: your message"- Push and open a Pull Request against the default branch
To remove all previous run and build artifacts:
rm -rf build .docusaurus
npm run start