mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
213b489c29
chore: fix unocss highlighting on windows caused by node path diff
24 lines
529 B
TypeScript
24 lines
529 B
TypeScript
import { defineConfig, presetAttributify, presetIcons, presetUno } from 'unocss'
|
|
|
|
export default defineConfig({
|
|
presets: [presetUno(), presetAttributify(), presetIcons()],
|
|
include: [`./**/*`],
|
|
exclude: [`./node_modules/**/*`, `./.vitepress/cache/**/*`],
|
|
theme: {
|
|
breakpoints: {
|
|
sm: '640px',
|
|
md: '768px',
|
|
lg: '1024px',
|
|
xl: '1280px',
|
|
'2xl': '1536px',
|
|
'3xl': '1920px',
|
|
},
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#2563eb',
|
|
deep: '#1d4ed8',
|
|
},
|
|
},
|
|
},
|
|
})
|