Initial commit: Plan EAL v3 Dashboard
- React 19 + Vite 7 + TypeScript - Tailwind CSS 4 com glassmorphism - Framer Motion animações - Bento Grid layout - Sparkline charts SVG - Progress ring animado DeskCRM Task: #1604 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
17
vite.config.ts
Normal file
17
vite.config.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
import path from 'path'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
base: '/v3/',
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': path.resolve(__dirname, './src'),
|
||||
},
|
||||
},
|
||||
server: {
|
||||
port: 3050,
|
||||
host: true,
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user