[preset-wind] Media breakpoint prefix ignored when using prefix
config · Issue #3322 · unocss/unocss
Last active
November 9, 2023 02:03
-
-
Save kaorukobo/416eccfaddeb654b3325c837a81612be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"unocss": "^0.57.2" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="tw:my-1 tw:md:my-1"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { defineConfig } from 'unocss' | |
import presetWind from '@unocss/preset-wind' | |
export default defineConfig({ | |
presets: [ | |
presetWind({prefix: 'tw:'}), | |
], | |
preflights: [], | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment