mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 15:03:57 +08:00
- Add docs directory with VitePress configuration - Add GitHub Actions workflow for docs build and deploy - Support bilingual (English/Chinese) documentation - Include search, custom theme, and responsive design
15 lines
237 B
TypeScript
15 lines
237 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
optimizeDeps: {
|
|
include: ['flexsearch']
|
|
},
|
|
build: {
|
|
target: 'es2019',
|
|
cssCodeSplit: true,
|
|
sourcemap: false,
|
|
chunkSizeWarningLimit: 1200
|
|
}
|
|
})
|
|
|