vite-plugin-windicss icon indicating copy to clipboard operation
vite-plugin-windicss copied to clipboard

πŸƒ Windi CSS for Vite ⚑️

Results 35 vite-plugin-windicss issues
Sort by recently updated
recently updated
newest added

When adding this plugin, vite startup time goes from ~400ms to ~550ms without config file to ~700ms with config file. I don't know what causes the first slow down, but...

bug

## Change - Make uppercase as validClassName ## Why Such class names will be filtered, but they are valid too. ```html ```

**Describe the bug** It appears vite-plugin-windicss doesn’t support the separator config option for variant prefixes ([see tailwind docs](https://tailwindcss.com/docs/configuration#separator)) Either of these would make sense: Copy tailwind: Arbitrary string Sensible restrictions:...

bug

**Describe the bug** see https://github.com/antfu/unocss/issues/560: some icons removed from `unocss` css asset, it seems only ones containing `bit` in the class name **Minimal Reproductions** https://stackblitz.com/edit/nuxt3-iconify-missing-icon-bug-yyk9oc Comment out the exclude entry:...

bug

**Describe the bug** Check https://github.com/windicss/nuxt-windicss/issues/144 When using pug class syntax in Nuxt3 with nuxt-windicss, WindiCSS doesn't not add the CSS classes. For example the following `p(class="text-red-600") My Text` works fine...

bug

**Describe the bug** I've been struggling with windicss not producing styles for my lang="pug" Vue SFCs in my components library. Manually adding the `WindiCSS({ extract: [PugExtractor], }),` didn't help. But...

bug

**Describe the bug** When I add `vite-plugin-windicss` to a SvelteKit project, I receive errors around the WinidiCSS syntax. Certainly the `@apply` directive, but maybe others. For example: ![gnome-shell-screenshot-O4UN90](https://user-images.githubusercontent.com/1865093/132137852-bc72bbea-6e52-4f5b-b4f9-9ad8b455b9f9.png) The actual...

bug

**Describe the bug** Input App.vue: ```vue .test-1 { @apply bg-light-700; } @layer base { .test-2 { color: red; } } ``` Output: ```css .test-1 { --tw-bg-opacity: 1; background-color: rgba(233, 236,...

bug

**Describe the bug** The problem concerns the includes of fonts in the `@layer`. After compilation, the path and name of the font files change, but it is not updated in...

bug

**Describe the bug** Unable to use prefix configuration **Minimal Reproductions** vite.config.js ```js import windiCSS from 'vite-plugin-windicss'; export default () => { // *** return { plugins: [windiCSS()] } // ***...

bug