Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions .github/workflows/jekyll-docker.yml

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/jekyll-gh-pages.yml

This file was deleted.

1 change: 1 addition & 0 deletions .nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Disable Jekyll processing for GitHub Pages.
1 change: 1 addition & 0 deletions public/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Disable Jekyll processing for GitHub Pages.
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ export default defineConfig({
build: {
outDir: 'dist',
},
publicDir: 'public',

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Preserve deployed legacy archive assets

When the Jekyll Pages workflow is removed, this Vite artifact becomes the only deployed site, but the build only uploads dist and Vite copies public/ assets, not docs/legacy/. I verified npm run build produces no dist/docs/legacy/index.html, while the app still renders a public project link to /docs/legacy/index.html in src/data/projects.ts, so the “Legacy Learning Archive” link will 404 in production unless those archived files are copied into the artifact or the link is removed/changed.

Useful? React with 👍 / 👎.

plugins: [react()],
});
Loading