This guide will help you set up your development environment for this project.
We recommend using NVM (Node Version Manager):
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bashThen install and use Node.js 22:
nvm install 22
nvm use 22Download and install Node.js 22 directly from the official Node.js website
node --version # Should show v22.x.x
npm --version # Should show 10.x.xgit clone [repository-url]
cd arcao-front-end-templatenpm installnpm run devThe development server will start and the application will be available at http://localhost:5173
npm run build # Build the project for production
npm run preview # Preview the production build locallyIf you encounter any issues:
-
Make sure you're using Node.js 22:
node --version
-
Try removing and reinstalling dependencies:
rm -rf node_modules npm install
-
Clear npm cache if needed:
npm cache clean --force