feat: add build pipeline

This commit is contained in:
Morten Olsen
2024-12-10 22:52:35 +01:00
parent d833dc5643
commit 0479d34a3b
17 changed files with 1003 additions and 0 deletions

7
app/vite.config.ts Normal file
View File

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