file: project initialization

This commit is contained in:
Leon Xu
2023-01-23 15:37:45 -08:00
parent c6c085bb18
commit e0543e9615
9 changed files with 83 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
})