vite-proxy-server
v1.0.5
Published
vite plugin of start local proxy server
Downloads
4
Readme
说明
一个 vite 插件,在 vite 启动时,监听本地指定端口(默认 3000)的 http 请求,并将此端口的所有请求都转发到指定的 URL。
使用方式
1. 安装
npm install vite-proxy-server --save-dev
2. 使用
在 vite.config.ts 文件中:
import viteServerPlugin from "vite-proxy-server";
export default defineConfig({
plugins: [
viteServerPlugin({
port: 3000, // 可选,配置服务器端口号,默认为 3000
targetUrl: "http://example.com", // 转发的目标地址
}),
],
});