inital commit

This commit is contained in:
2025-07-12 21:19:35 -05:00
parent c4a6bad95e
commit f05b05420d
152 changed files with 12282 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tsconfigPaths from 'vite-tsconfig-paths';
// https://vitejs.dev/config/
export default defineConfig({
optimizeDeps: {
include: ['@emotion/react', '@emotion/styled', '@mui/material/Tooltip'],
},
plugins: [tsconfigPaths(), react()],
preview: {
port: 5000,
},
server: {
host: '0.0.0.0',
port: 3000,
},
base: '/elegent',
});