Initial commit

This commit is contained in:
2026-02-21 09:44:18 -03:00
commit 5dfc2cbd85
65 changed files with 11989 additions and 0 deletions

14
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
/**
* Vite configuration for the DMS frontend application.
*/
import { defineConfig } from 'vite';
/**
* Exports frontend build and dev-server settings.
*/
export default defineConfig({
server: {
host: '0.0.0.0',
port: 5173,
},
});