Skip to content

@vanilla-extract/[email protected]

Choose a tag to compare

@vanilla-extract-ci vanilla-extract-ci released this 07 Feb 05:08
· 272 commits to master since this release
d9db9bf

Minor Changes

  • #989 669a61f Thanks @michaeltaranto! - Add emitCssInSsr option

    Provides the ability to opt in to emitting CSS during SSR.

    // vite.config.js
    
    import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin';
    
    export default {
      plugins: [
        vanillaExtractPlugin({
          emitCssInSsr: true,
        }),
      ],
    };