kinlim-feishu-lc-sdk/vite.config.js

17 lines
345 B
JavaScript
Raw Permalink Normal View History

2025-03-05 20:02:34 +08:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
2024-07-10 12:55:22 +00:00
// https://vitejs.dev/config/
export default defineConfig({
2025-03-05 20:02:34 +08:00
base: "./",
2024-07-10 12:55:22 +00:00
plugins: [react()],
server: {
2025-03-05 20:02:34 +08:00
host: "0.0.0.0",
},
build: {
rollupOptions: {
external: ["#minpath", "#minproc", "#minurl"],
},
},
});