1 Star 0 Fork 0

yunbuzhi/wisdomCreation-weapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
侯金芝 提交于 2024-01-21 18:08 . feat:用户操作接口done
import { defineConfig } from "vite";
import uni from "@dcloudio/vite-plugin-uni";
// vw方案(无像素差):px自动转换vw
import pxtovw from "postcss-px-to-viewport";
import { dirname } from 'path';
import { fileURLToPath } from 'url';
import ReactivityTransform from '@vue-macros/reactivity-transform/vite'
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// https://vitejs.dev/config/
export default defineConfig({
server: {
hmr: true
},
plugins: [uni(),ReactivityTransform()],
css: {
postcss: {
plugins: [
// autoprefixer({
// overrideBrowserslist: ['Android 4.1', 'iOS 7.1', 'Chrome > 31', 'ff > 31', 'ie >= 8']
// }),
pxtovw({
unitToConvert: 'px', // 要转化的单位
viewportWidth: 375, //100vw=750px,UI设计稿的宽度,vant是375。可参考这个:https://juejin.cn/post/6961737808339795975
unitPrecision: 6, // 转换后的精度,即小数点位数
propList: ['*'], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
viewportUnit: 'vw', // 指定需要转换成的视窗单位,默认vw
fontViewportUnit: 'vw', // 指定字体需要转换成的视窗单位,默认vw
selectorBlackList: ['ignore-'], // 指定不转换为视窗单位的类名,
minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
replace: true, // 是否转换后直接更换属性值
landscape: false, // 是否处理横屏情况
// exclude: [/node_modules\/vant/i]
})
],
},
},
resolve: {
alias: {
'@/': `$${__dirname}/src`
},
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yunbuzhi/wisdom-creation-weapp.git
git@gitee.com:yunbuzhi/wisdom-creation-weapp.git
yunbuzhi
wisdom-creation-weapp
wisdomCreation-weapp
master

搜索帮助