5 Star 0 Fork 0

codeenjoyment/yanxuan-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1.95 KB
一键复制 编辑 原始数据 按行查看 历史
codeenjoyment 提交于 2023-02-11 06:54 . 初始化仓库,创建模板
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import postCssPxToRem from "postcss-pxtorem"
import {resolve} from 'path'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: [{
find: '@',
replacement:resolve(__dirname,'src'),
},
{
find: 'components',
replacement:resolve(__dirname,'src/components'),
}],
extensions: [".ts", ".vue", ".js", ".jsx", ".tsx"], // 导入时想要省略的扩展名列表。
},
css: {
postcss: {
plugins: [
postCssPxToRem({
rootValue: 37.5, // 1rem的大小
propList: ['*'], // 需要转换的属性,这里选择全部都进行转换
})
]
}
},
// 配置代理
server: {
host: '0.0.0.0', // 会映射多个域名地址
port: 8000, // 默认起始端口号
open: true, // 自动打开浏览器访问
proxy: {
'/app-dev': { // 代理所有以 '/app-dev'开头的请求路径
// 前后台接口地址
target: 'http://gmall-h5-api.atguigu.cn',
// 备用地址
// target:'http://gmall-h5-api.atguigu.cn/',
// 服务器得到的就不是当前应用的域名了, 而是后台的域名
changeOrigin: true,
// 重写路径: 去掉路径中开头的'/dev-api'
rewrite: (path:any) => path.replace(/^\/app-dev/, ''),
},
'/app-wanyi': { // 代理所有以 '/app-dev'开头的请求路径
// 前后台接口地址
target: 'https://m.you.163.com',
// 备用地址
// target:'http://gmall-h5-api.atguigu.cn/',
// 服务器得到的就不是当前应用的域名了, 而是后台的域名
changeOrigin: true,
// 重写路径: 去掉路径中开头的'/dev-api'
rewrite: (path:any) => path.replace(/^\/app-wanyi/, ''),
},
},
},
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/codeenjoyment/yanxuan-app.git
[email protected]:codeenjoyment/yanxuan-app.git
codeenjoyment
yanxuan-app
yanxuan-app
master

搜索帮助