How to deploy a React app
Set homepage to "." in your package.json, build, then upload the zipped build folder. Takes about a minute.
Steps
- In the
package.json, change thehomepagevalue to".". This makes the build reference its files relative toindex.html, which is what our hosting expects. - Run
npm run buildin your terminal. This creates abuildfolder. - Zip the
buildfolder. - Go to tiiny.host, choose a link name, and upload the zip.
- Click Publish.
If your site loads but the styling is missing
This is almost always the homepage value. Check it's set to "." and not to a full URL or an absolute path, then rebuild and re-upload.
Video Guide
Updated on: 04/09/2026
Thank you!
