run bun create vite

This commit is contained in:
Wouter van Veelen
2025-11-02 18:37:51 +01:00
parent a35d17b80a
commit 5805dee1b4
15 changed files with 854 additions and 2 deletions

13
vite.config.ts Normal file
View File

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