mirror of
https://github.com/tiennm99/try-claudekit.git
synced 2026-04-17 13:21:43 +00:00
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.
6 lines
99 B
JavaScript
6 lines
99 B
JavaScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
base: "/try-claudekit/",
|
|
});
|