Files
glm-hub/vite.config.ts
T

16 lines
273 B
TypeScript

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,
},
});