Host on github pages + creation
Vite vs Facebook installer
Facebook develops React, but Vite bundles everything into smaller packages and is faster.
Using Facebook installer
npx create-react-app "your-project-name"
cd "your-project-name"
- make it a github repo
npm install gh-pages --save-dev
- add the following to the package.json scripts dict:
"predeploy" : "npm run build",
"deploy" : "gh-pages -d build",
- on github.com select gh-pages branch.
- run
npm run deploy
to add the newest version to github pages
Custom Domain
When using a custom domain, you need a CNAME file. Place this in the
public/
folder to make sure itāll get copied over to the root of the deploy.
Using Vite
npm create vite@latest
app-name
React
Typescript
- follow these instructions
Custom Domain
When using a custom domain, you need a CNAME file. Place this in the
public/
folder to make sure itāll get copied over to the root of the deploy.