feat: versión inicial de GLM Hub

This commit is contained in:
2026-07-29 12:17:56 -04:00
commit 1c3d534322
43 changed files with 10381 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
// base: "/glm-hub/",
plugins: [react()],
server: {
host: "127.0.0.1",
port: 4173,
},
preview: {
host: "127.0.0.1",
port: 4173,
},
});