Skip to content

v0.6.0

Choose a tag to compare

@github-actions github-actions released this 27 Feb 14:08
· 461 commits to main since this release

Features

Enable it by:

// vite.config.js
import WindiCSS, { PugTransformer } from 'vite-plugin-windicss'

export default {
  plugins: [
    WindiCSS({
      scan: {
        transformers: [
          PugTransformer(), // <--
        ],
      },
    }),
  ],
}