Add Vite project sample

This commit is contained in:
2023-10-06 17:36:56 +07:00
parent 41c9384f23
commit 756103b07e
11 changed files with 2968 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()],
})