1 Star 0 Fork 2

yixueshangmei/vue3_store_admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.js 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
Black程序员 提交于 2023-05-02 19:32 . 基础配置项更新
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import WindiCSS from 'vite-plugin-windicss'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
// 配置文件路径别名, 方便后续引入文件的路径书写
resolve: {
alias: {
// "~" 为指定的替代路径名
"~": path.resolve(__dirname, "src")
}
},
// 允许跨域处理
server: {
proxy: {
// 对以/api开头的请求进行代理
'/api': {
// 将请求目标指定到接口服务地址
target: 'http://ceshi13.dishait.cn',
// 设置允许跨域
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
// 设置非https请求
// secure: false,
// 重写路径,将/api即之前的内容清除
// pathRewrite: {
// '^/api': ''
// }
}
}
},
plugins: [vue(), WindiCSS()]
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yixueshangmei/vue3_store_admin.git
[email protected]:yixueshangmei/vue3_store_admin.git
yixueshangmei
vue3_store_admin
vue3_store_admin
master

搜索帮助