Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 518 Bytes

early-experts-bathe.md

File metadata and controls

18 lines (14 loc) · 518 Bytes
@vanilla-extract/esbuild-plugin @vanilla-extract/vite-plugin @vanilla-extract/rollup-plugin
minor
minor
minor

Add automatic debug IDs

Automatic debug IDs allow your styles and other identifiers (e.g. CSS Vars, keyframes, etc) to have names that more closely reflect your source code when in development. This makes it easier to understand how the CSS output links to your source code.

// styles.css.ts

// redBox ~= 'styles_redBox_asdfgj'
const redBox = style({
    background: 'red'
})