Copied!
Vite
How to deploy Vite app to Netlify Using github "Contineous deployment"
Contineous Deployment to Netlify using Github.jpg
Shahroz Javed
Feb 07, 2024 . 36 views

Table Of Contents

 
 

Introduction:

Welcome to this quick guide on deploying your Vite.js application to Netlify using GitHub. In this tutorial, we'll walk you through the straightforward steps of connecting your GitHub repository to Netlify, enabling seamless and automated deployment. Let's get started, so you can have your Vite app up and running on Netlify in just a few minutes.

 

Create a vite project:

npm create vite@latest my-vite-app -- --template vue
cd my-vite-app
npm install
npm run dev
          
 

Create a new repository on github:

After creating repository go Inside your project and run following commands to push code on repository

git init
git remote add origin https://github.com/username/your-repo.git
git add .
git commit -m "initial commit"
git push origin master
          
 

Install Netlify CLI:

Install the netlify CLI and login using following commands.

npm install -g netlify-cli
netlify login
          
  1. Inside you project directory.
netlify init
          

Explaination: This command guides you through the initialization process, prompting for information such as build settings, publish directory, and other configuration options. It establishes the necessary connections between your local project and Netlify, preparing it for deployment.

 

Access your Website:

https://websitename.netlify.app

Replace "websitename" with your website name.

Conclusion:

that's it! You have successfully deployed your vite App to netlify using GitHub. Now you can share the link with others, and your app will be publicly accessible.

Related Terms:

13 Shares

Related Posts

Similar Posts