How to Deploy on GitHub Pages
Last updated
Last updated
So, you've built an app - congrats! You can run it locally, but wouldn't it be sweet if everyone on the internet could use it??
This resource covers deploying a Vanilla JS Vite app using Github Pages.
Note: These details can also be found on Vite's own docs.
Table of Contents
In order to deploy to Github using this guide, you will need
A project built using Vite.
A Github repo with that Vite project inside.
A main
branch with code that is ready to be deployed.
Github Pages is (according to their website)
... a static site hosting service that takes HTML, CSS, and JavaScript files straight from a repository on GitHub, optionally runs the files through a build process, and publishes a website.
A static site hosting service is one that lets you create a static web server. As the name suggests, static web servers serve static files (.html
files, .css
files, .js
files, images, videos, etc.) These are all files that do not change or require processing before being sent.
By contrast, a dynamic web server serves content that is generated in real-time based on the user request. This content can include personalized web pages, database-driven content, data from 3rd party APIs, and more. Dynamic web servers can also serve static content.
When someone visits your GitHub Pages website, the GitHub servers will simply send your project's HTML, CSS, and JS files to the client.
In this article, you will configure GitHub pages to execute a "build process" to convert your Vite project into a production-ready version and deploy it.
Check out this example repository:
https://github.com/benspector-mls/vite-deployment-test
And you can see the deployed version here:
https://benspector-mls.github.io/vite-deployment-test/
Notice how the URL that is generated for this deployed site follows the pattern of https://YOUR_ACCOUNT.github.io/YOUR_REPO/
The steps required to deploy your project are:
Configure Vite to properly build your project to be compatible with GitHub pages
Configure your GitHub repository to use GitHub actions.
Create a new "Action" on GitHub to build your project.
Let's get into it!
Return to your own local repository. Make sure that you have switched to the main
branch. Then, cd
into your Vite project and do the following:
First, create a Vite configuration file:
And copy this code inside, inserting your repository's name between the forward slashes (keep the forward slashes around the name):
What did this do?
When we deploy our project, we will instruct GitHub pages to run the command npm run build
command. Go ahead and run that command to see what it does locally:
This will create the production version of your app in a folder called dist/
(short for "distribution").
Take a look inside. It will have an index.html
file and an assets/
folder with your JavaScript and CSS compressed into just two files!
This minification is one of the benefits of Vite as a "build tool". It prepares your project to run lightning-quick because it removes a lot of the bloat that make our lives easier during development but isn't necessary for a deployed project.
Your index.html
file will mostly be the same as you wrote it, however it will load your .js
and .css
files like so:
The vite.config.js
file you created and the base
property that you set determines what goes before /assets
in these two tags. Doing so ensures that the .js
and .css
files in the /assets
folder have the correct paths.
If you comment out the code inside of vite.config.js
and run npm run build
again, you'll notice that the path to the /assets
folder no longer includes the name of your repo. Remember to uncomment that code so that your configuration is set again.
Finally, add, commit and push your changes to add the vite.config.js
file to your repo.
Note: each time your
npm run build
, new versions of yourassets
will be created and will overwrite the old versions. At any point after runningnpm run build
, you can runnpm run preview
to see what the production version will look like.
Now that your Vite project inside of your repo is set up to properly execute the npm run build
command, we can instruct GitHub Pages to run that command and to deploy the generated production build.
Open the repo on Github.com
Go to the Settings tab
Find the Pages section
Change the Source to GitHub Actions
Then click on Actions and select set up a workflow yourself
This will create a main.yml
file and will allow you to edit it. Here is an example you can follow (note that this assumes that you have called your Vite project folder app
inside of your repo. If you have named it something else, replace every instance of app
with the name of your Vite project folder):
Commit the file using the GitHub GUI. This will immediately cause the action to begin!
On your GitHub repo homepage, look for the About section on the right side of the screen and click on the cog icon. Click on "Use your GitHub Pages website". This will add the deployed site to your repo's homescreen!
Lastly, return to your repo and git pull
to bring the new main.yml
file into your local repository.
That's it! Share your deployed link with friends and family to show off your work :)
When building your project for production, you may notice that the application is not working in the same way that it was during development. Here are a few common issues that can arise when building for production:
Double check that all of your imports are correct! In the index.html
file, double check that you are referencing files located in your src
directory like src/main.js
and src/style.css
(if you are linking your CSS in this way).
If you are using image files or other static assets, they should be in the public
directory. Filepaths to these files are all treated as if you are in the root of public
Within .html
and .css
files, public files should be referenced like so /filepath/within/public
(note the /
in front)
Within .js
files, public files should be referenced like so filepath/within/public
(note the lack of /
in front).
For example, if your file structure looks like this:
In HTML and CSS files, you would reference them like so: "/images/picture1.jpg"
In JS files, you would reference them like so: "images/picture2.jpg"
or "data.json"
If your project has multiple .html
files, you will need to modify your vite.config.js
file to enable these multiple "entry points".
For best results, refer to the Vite documentation.