12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- // uno.config.ts
- import {
- defineConfig,
- presetAttributify,
- presetIcons,
- presetTypography,
- presetUno,
- presetWebFonts,
- transformerDirectives,
- transformerVariantGroup,
- } from 'unocss'
- export default defineConfig({
- shortcuts: [],
- rules: [],
- variants: [
- // 使用工具函数
- matcher => {
- if (!matcher.endsWith('!'))
- return matcher
- return {
- matcher: matcher.slice(0, -1),
- selector: s => `${s}!important`,
- }
- },
- ],
- theme: {
- colors: {
- // ...
- },
- },
- presets: [
- presetUno(),
- presetAttributify(),
- presetIcons({
- collections: {
- tabler: () => import('@iconify-json/tabler/icons.json').then(i => i.default),
- },
- extraProperties: {
- 'display': 'inline-block',
- 'height': '1.2em',
- 'width': '1.2em',
- 'vertical-align': 'text-bottom',
- },
- }),
- presetTypography(),
- presetWebFonts(),
- ],
- transformers: [
- transformerDirectives(),
- transformerVariantGroup(),
- ],
- content: {
- pipeline: {
- include: [
- // default
- /\.(vue|[jt]sx|ts)($|\?)/,
- // Use utility functions
- // Reference: https://unocss.dev/guide/extracting#extracting-from-build-tools-pipeline
- ],
- // exclude files
- // exclude: []
- },
- },
- })
|