Made with ❤️ by Chrisko
...and
- TailwindCSS - A utility-first CSS framework
- Vite - Next Generation of Frontend Tooling
- Ionicons - Open source icons. Lovingly hand-crafted.
This is a template repository.
You can create your own copy of it by clicking on the green button "Use this template" above the file list.
If you "Include all branches" during the process, the template will already be online on GitHub Pages. The URL should be https://<USERNAME>.github.io/<REPO-NAME>/
Or you only copy the main branch and deploy the project to GitHub Pages yourself.
More information about template repositories on the GitHub Docs
package.json
provides four scripts for development, build, preview and deploy. The first three are associated with Vite. The script deploy uses push-dir to push the dist
directory to the gh-pages
branch.
In order to deploy the local changes you made:
# Clear working tree
$ git add .
$ git commit -m "Before deploy"
# build project to dist directory
$ npm run build
# Use push-dir to push dist to gh-pages
$ npm run deploy