Initialize Vite project

This commit is contained in:
sss
2025-08-13 16:06:17 -07:00
parent 3567a779db
commit 06af334434
6 changed files with 78 additions and 1 deletions

7
vite.config.js Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
export default defineConfig({
build: {
outDir: 'docs'
}
})