feat: initial frontend commit

This commit is contained in:
nihonium 2025-10-09 14:40:21 +03:00
parent 6612ed6df6
commit e1cdb7af79
Signed by: nihonium
GPG key ID: 0251623741027CFC
18 changed files with 4146 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: '127.0.0.1',
port: 8083,
},
})