basic react package

This commit is contained in:
Felix Roos 2022-05-14 20:27:05 +02:00
parent 9588272639
commit 0d63ec9146
20 changed files with 977 additions and 0 deletions

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()]
})