vite.config.ts
376 Bytes
import { defineConfig } from "vite";
import uni from "@dcloudio/vite-plugin-uni";
// 仅 App:相对路径,避免打包后 www/_uniappview.html 无法打开
// API 直连后端,见 .env.development / .env.production 中的 VITE_US_API_BASE
// https://vitejs.dev/config/
export default defineConfig({
base: "./",
plugins: [uni()],
server: {
open: "/",
},
});