1 Star 0 Fork 0

许致信/InsuranceRegistration

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1.88 KB
一键复制 编辑 原始数据 按行查看 历史
许致信 提交于 2023-12-08 16:10 . 打包上线
import { defineConfig } from "vite"
import vue from "@vitejs/plugin-vue"
import AutoImport from "unplugin-auto-import/vite"
import Components from "unplugin-vue-components/vite"
import { VantResolver } from "unplugin-vue-components/resolvers"
import path from "path"
// https://vitejs.dev/config/
export default defineConfig({
base: "./",
resolve: {
// 别名
alias: {
"@": path.resolve(__dirname, "src"),
"@com": path.resolve(__dirname, "src/components"),
},
},
plugins: [
vue(),
AutoImport({
imports: ["vue", "vue-router"],
// 可以选择auto-import.d.ts生成的位置,使用ts建议设置为'src/auto-import.d.ts'
dts: "src/auto-import.d.ts",
// 查询本地模块
dirs: ["./src/api"],
}),
Components({
resolvers: [VantResolver()],
}),
],
server: {
open: true, // 是否自动在浏览器打开
port: 3000, // 端口号
host: "0.0.0.0",
proxy: {
"/api": {
// target: "http://192.168.199.195:10201", //这里后台的地址模拟的;应该填写你们真实的后台接口
// target: "https://wxmini.snwechat.cn", //这里后台的地址模拟的;应该填写你们真实的后台接口
target: "http://aiya.snwechat.com", //这里后台的地址模拟的;应该填写你们真实的后台接口
changeOrigin: true,
secure: false, // 如果是https接口,需要配置这个参数
// ws: true, //websocket支持
rewrite: (path) => path.replace(/^\/api/, ""),
},
},
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/aweixin/insurance-registration.git
git@gitee.com:aweixin/insurance-registration.git
aweixin
insurance-registration
InsuranceRegistration
master

搜索帮助