fix: restaurar proyecto completo y actualizar dist final

This commit is contained in:
2026-08-13 11:15:00 -04:00
parent 7e41b2f26a
commit f4f6ee23df
102 changed files with 20834 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,
},
});