Tony Kornmeier's CV Site
- TailwindCSS - A utility-first CSS framework
- Vite - Next Generation of Frontend Tooling
- Heroicons - Beautiful hand-crafted SVG icons.
Usage
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