Skip to content

v8.5.0

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 25 May 15:59
· 254 commits to main since this release
  • The postcss option now supports an object format that allows passing additional options to the PostCSS processor instance. This is useful when you are using PostCSS projects that relies on custom parser/stringifiers: (@esiao)

    postcss: {
      plugins: [...], // list of plugins
      options: {
        parser: sugarss // use sugarss parser
      }
    }