ci: add GitHub Actions workflow to deploy to GitHub Pages

Add deploy.yml workflow that runs tests, builds, and deploys to
GitHub Pages on push to main. Add vite.config.js with base path
for subdirectory hosting. Include deployment spec.
This commit is contained in:
2026-04-12 19:07:02 +07:00
parent a57fda7ba4
commit c8b988fd8d
4 changed files with 210 additions and 1 deletions

5
vite.config.js Normal file
View File

@@ -0,0 +1,5 @@
import { defineConfig } from "vite";
export default defineConfig({
base: "/try-claudekit/",
});