Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 29, 2019 10:30 am GMT

How to deploy a vue app to GitHub pages

In this tutorial, we are going to learn about deploying a vue.js app to GitHub pages.

We are deploying our vue app in four steps.

Step 1

Push your vue.js app to a GitHub repository.

vue-app-github-repo

Step 2

Create a new file called vue.config.js in your root app folder.

vue config

Now add a below code to vue.config.js file by replacing with your own publicPath.

module.exports = {    publicPath: '/vue-app-deploy-example/'}

Note: publicPath is the GitHub repository name you created at the time of pushing your app to GitHub.

Step 3

Now we are creating a deploy script file which helps us to deploy our app to GitHub pages.

create a new file called deploy.sh in your root app folder and add the below code by replacing your GitHub username and repository name.

#!/usr/bin/env sh# abort on errorsset -e# buildnpm run build# navigate into the build output directorycd distgit initgit add -Agit commit -m 'deploy'git push -f [email protected]:<USERNAME>/<REPO>.git master:gh-pagescd -

Step 4: Running deploy script

Open your terminal and run below command to successfully deploy your app to GitHub pages

bash deploy.sh

vue-app-deploy-script

Once you successfully completed all above steps now open your vue app GitHub repo and click on settings tab then scroll down to GitHub pages to see your live app URL.

vue-app-deployed-github-pages

originally published at reactgo.com


Original Link: https://dev.to/saigowthamr/how-to-deploy-a-vue-app-to-github-pages-1ia

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To