Simple example of react dev container

This commit is contained in:
Mike Conrad
2025-06-08 11:45:19 -04:00
parent b1a5fff476
commit a406b8b11d
20 changed files with 2509 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()],
})