2 Star 18 Fork 0

潇寒/vue3blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config(vite1.x).ts 906 Bytes
一键复制 编辑 原始数据 按行查看 历史
潇寒 提交于 2021-03-23 17:39 . camellia
// 官方文档
// https://github.com/vitejs/vite/blob/master/src/node/config.ts
import { resolve } from "path";
function pathResolve(dir: string)
{
return resolve(__dirname, ".", dir);
}
module.exports = {
alias: {
"/@/": pathResolve("src"),
},
optimizeDeps: {
// include: ["@ant-design/icons-vue"],
},
// 端口
port: 3005,
// 压缩(使用esbuild,打包之后的代码360浏览器运行报错)
minify: 'terser',
// 是否自动在浏览器打开
open: false,
// 是否开启 https
https: false,
// 服务端渲染
ssr: false,
// 反向代理
proxy: {
// 模块标识
'/index.php': {
// 请求连接
target: 'https://guanchao.site',
// 是否允许跨域
changeOrigin: true,
// 路由重写,将api/ 重写为空
// rewrite: path => path.replace(/^\/api/, '')
},
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/camelliass/vue3blog.git
git@gitee.com:camelliass/vue3blog.git
camelliass
vue3blog
vue3blog
master

搜索帮助