加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 784 Bytes
一键复制 编辑 原始数据 按行查看 历史
jeremyjone 提交于 2021-10-13 18:05 . feat(components): 初始提交
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { resolve } from "path";
import eslintPlugin from "vite-plugin-eslint";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
eslintPlugin({
include: ["src/**/*.js", "src/**/*.vue", "src/**/*.ts"]
})
],
resolve: {
alias: {
"@": resolve(__dirname, "src")
}
},
base: "./", // 打包路径
server: {
// port: 3000, // 端口
open: true, // 启动打开浏览器
cors: true, // 跨域
proxy: {
"/api": {
target: "http://192.168.1.26:8093/api/", // 目标地址
changeOrigin: true, // 修改源
secure: false, // ssl
rewrite: path => path.replace("/api/", "/")
}
}
}
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化