2024-08-26 03:31:23 +00:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import uni from "@dcloudio/vite-plugin-uni";
|
2024-08-26 03:15:07 +00:00
|
|
|
// https://vitejs.dev/config/
|
2024-09-24 08:02:13 +00:00
|
|
|
|
2024-08-26 03:15:07 +00:00
|
|
|
export default defineConfig({
|
2024-08-26 03:31:23 +00:00
|
|
|
plugins: [uni()],
|
|
|
|
server: {
|
|
|
|
host: "0.0.0.0", // 这个用于启动
|
|
|
|
port: 8093, // 指定启动端口
|
|
|
|
open: true, //启动后是否自动打开浏览器
|
|
|
|
},
|
|
|
|
});
|