wswmsword / postcss-mobile-forever

一款 PostCSS 插件,将固定尺寸的视图转为可跟随宽度变化而等比例伸缩的视图。To adapt different displays by one mobile viewport.
https://wswmsword.github.io/examples/mobile-forever/vanilla/
MIT License
276 stars 19 forks source link

可以增加一个最小宽度的限制么,目前我的需求是pc端适配,移动端不适配 #26

Closed CodeMonkeyLin closed 6 months ago

wswmsword commented 6 months ago

参考下这个 issue#21,配置里加上 experimental.minDisplayWidth 即可,类似:

{
  "appSelector": "#app",
  "maxDisplayWidth": 1440,
  "experimental": {
    "minDisplayWidth": 980
  }
}