• This project
    • Loading...
  • Sign in

Hooke / stdj_h5

Itomix
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • stdj_h5
  • postcss.config.js
  • hookehuyr's avatar
    feat: 初始化三坛大戒H5应用项目 · cc097891 ...
    cc097891
    - 完成启动页面设计和动画效果
    - 实现首页布局和功能模块
    - 添加三师七证、义工、戒子等核心页面
    - 集成Vue3 + Vite + Vant UI框架
    - 实现页面路由和导航功能
    - 添加响应式设计和交互动画
    hookehuyr authored 2025-10-30 11:06:35 +0800
postcss.config.js 421 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
export default {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
    'postcss-px-to-viewport': {
      unitToConvert: 'px',
      viewportWidth: 375,
      unitPrecision: 6,
      propList: ['*'],
      viewportUnit: 'vw',
      fontViewportUnit: 'vw',
      selectorBlackList: ['ignore-'],
      minPixelValue: 1,
      mediaQuery: true,
      replace: true,
      exclude: [],
      landscape: false
    }
  }
}