chore: subir version inicial del Tablero CDC

This commit is contained in:
2026-05-23 11:58:41 -04:00
commit 36fdf98419
77 changed files with 15092 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tsconfigPaths from "vite-tsconfig-paths";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
base: "/tablero-cdc/",
plugins: [react(), tsconfigPaths(), tailwindcss()],
server: {
port: 3000,
},
});