The files GitHub Pages serves are at the repository root (index.html and
static/). Edit the Vue source instead:
- Install the project dependencies once:
npm install - Start a local preview:
npm run serve - Edit
src/App.vue(copy, resume entries, links, and section markup). - Build the production site:
npm run build - Publish the build into the GitHub Pages directory:
npm run deploy - Review with
git diff, then commit and pushmaster.
src/ was recovered from the source map of the last deployment. It is now the
source of truth; don't edit minified files in static/js/.
If cloning a revision that does not yet contain src/, run
npm run recover-source before starting the development server. This extracts
the original Vue component and profile image from the saved source map. It
refuses to overwrite an existing source folder; pass -- --force only if you
intentionally want to restore it again.