加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 630 Bytes
一键复制 编辑 原始数据 按行查看 历史
逍遥子 提交于 2023-03-24 20:09 . commit init
/*
* @Description: main description
* @Author: zhang zhen
* @Date: 2022-12-12 15:59:40
* @LastEditors: zhang zhen
* @LastEditTime: 2023-03-24 16:30:52
* @FilePath: /flieView/vite.config.js
*/
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
// base: '/exploreX6Example/',
plugins: [vue()],
server: {
host: '0.0.0.0',
port: 8000,
proxy: {
'/api': {
target: 'http://192.168.0.100:3002',
changeOrigin: true,
ws: false,
rewrite: path => path.replace(/^\/api/, '')
}
}
},
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化