7 Star 1 Fork 2

雪村/xueer_uniapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
guqzhou 提交于 2024-06-07 20:55 . 提交代码
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from "path";
import postCssPxToRem from "postcss-pxtorem"
import AutoImport from 'unplugin-auto-import/vite';
import Components from 'unplugin-vue-components/vite';
import { VantResolver, VantImports } from '@vant/auto-import-resolver';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
AutoImport({
imports: [VantImports()],
resolvers: [VantResolver()],
}),
Components({
resolvers: [VantResolver()],
}),
],
server: {
host: '0.0.0.0',
port: 8888,
proxy: {
'/api': {
target: 'https://d-xueer.bigchun.com/api',
changeOrigin: true, //支持跨域
rewrite: (path) => path.replace(/^\/api/, ''),
},
}
},
base: './',
resolve: {
alias: {
"@": resolve(__dirname, "src"),
}
},
css: {
postcss: {
plugins: [
postCssPxToRem({
rootValue: 37.5, // 设计图最大宽度除以10
propList: ['*'], // 需要转换的属性,这里选择全部都进行转换
})
]
},
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sunhappy0318/xueer_uniapp.git
[email protected]:sunhappy0318/xueer_uniapp.git
sunhappy0318
xueer_uniapp
xueer_uniapp
master

搜索帮助