Vite配置项 发表于 2022-03-07 更新于 2022-10-13 分类于 编程语言 Vite配置项 Vite 配置项123456789101112import { 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/", // 运行服务后打开的网址,默认为空(不打开) },});