Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011
  1. import { Root } from 'postcss'
  2. import * as postcss from 'postcss'
  3. export default postcss.plugin('trim', () => (css: Root) => {
  4. css.walk(({ type, raws }) => {
  5. if (type === 'rule' || type === 'atrule') {
  6. if (raws.before) raws.before = '\n'
  7. if (raws.after) raws.after = '\n'
  8. }
  9. })
  10. })