Posts

Showing posts from May, 2024

How to Deploy a React App on GitHub Pages - Step-by-Step Guide

Image
How to Deploy a React App on GitHub Pages - Step-by-Step Guide How to Deploy a React App on GitHub Pages - Step-by-Step Guide Hello Everyone, in this video we will see how to make a React project live on GitHub Pages. Follow these steps to get your React app deployed. Step 1: Create a New React Project First, open your terminal and create a new React project using create-react-app . Here’s how: npx create-react-app test Navigate into your project directory: cd test Open your project in VS Code: code . Step 2: Modify package.json Open package.json and add the homepage field. Replace your-username and your-repo-name with your GitHub username and repository name: { "homepage": "https://your-username.github.io/your-repo-name" } Step 3: Install gh-pages ...