Uploaded the vite boilerplate project

This commit is contained in:
2023-04-17 19:58:23 +02:00
parent c80fb6e6bd
commit 10ab9d632b
10 changed files with 900 additions and 0 deletions

6
vite.config.js Normal file
View File

@ -0,0 +1,6 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
})