React playground with vite.

This commit is contained in:
Tomasz Półgrabia 2024-12-20 00:16:04 +01:00
parent 4a14834eef
commit 106f73f10e
16 changed files with 5284 additions and 0 deletions

View file

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