Add example dockerfiles for React app

This commit is contained in:
Mike Conrad
2025-05-03 21:16:41 -04:00
parent a2e5374aba
commit 486aa9af7c
20 changed files with 2480 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()],
})