init: add vite setup

This commit is contained in:
moolcoov
2025-02-26 21:32:31 +03:00
parent 0deb186e61
commit 4c8998cdfb
17 changed files with 342 additions and 5 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})