云驹博客

路漫漫其修远兮,吾将上下而求索。

0%

Vite配置项

Vite 配置项

1
2
3
4
5
6
7
8
9
10
11
12
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: "0.0.0.0", // ip
port: 2231, // 端口
open: "http://localhost:2231/", // 运行服务后打开的网址,默认为空(不打开)
},
});