Deployment Guide
Building Your Stratox Project
npm run buildDeploying to GitHub Pages
Steps:
git init git add . git commit -m "Initial commit"git checkout -b gh-pagesrm -rf !(dist) cp -r dist/* . rm -rf distgit add . git commit -m "Deploy to GitHub Pages" git push origin gh-pageshttps://<your-username>.github.io/<your-repository>/
Deploying to Netlify
Steps:
Deploying to Vercel
Steps:
Deploying to Other Services
General Steps:
Conclusion
Last updated