代码拉取完成,页面将自动刷新
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/, ''),
},
},
},
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。