All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 58s
- Reemplazar CSS nativo con Tailwind CSS v4 y utilidades custom - Crear librería de componentes UI basada en shadcn-vue (Radix Vue) - Componentes UI: Button, Card, Input, Textarea, Badge, Dialog, Avatar, DropdownMenu - Migrar todos los componentes existentes a Tailwind utilities - Convertir EventCard.js (htm) a EventCard.vue (SFC) - Implementar sistema de temas dark/light con clase .dark - Mantener efectos glassmorphism via @utility custom - Eliminar styles.css legacy
27 lines
928 B
JavaScript
27 lines
928 B
JavaScript
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import { fileURLToPath, URL } from 'node:url';
|
|
|
|
export default defineConfig({
|
|
plugins: [vue(), tailwindcss()],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
'/api': { target: 'http://localhost:3000', changeOrigin: true },
|
|
'/events': { target: 'http://localhost:3000', changeOrigin: true, ws: false },
|
|
'/authorize': { target: 'http://localhost:3000', changeOrigin: true },
|
|
'/accounting': { target: 'http://localhost:3000', changeOrigin: true },
|
|
'/post-auth': { target: 'http://localhost:3000', changeOrigin: true },
|
|
'/authorize-inner': { target: 'http://localhost:3000', changeOrigin: true },
|
|
'/test': { target: 'http://localhost:3000', changeOrigin: true }
|
|
}
|
|
}
|
|
});
|
|
|