Import frontend skeleton.

This commit is contained in:
Dominik Pantůček 2025-03-31 19:33:33 +02:00
parent ae66820e49
commit ec915c1f2f
16 changed files with 4650 additions and 0 deletions

8
frontend/vite.config.js Normal file
View file

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