gohttpdUi/windi.config.ts

22 lines
397 B
TypeScript
Raw Normal View History

2021-12-10 17:10:51 +08:00
import { defineConfig } from 'windicss/helpers'
2021-12-07 16:36:16 +08:00
export default defineConfig({
extract: {
include: ['src/**/*.{vue,html,jsx,tsx}'],
exclude: ['node_modules', '.git']
},
darkMode: 'class',
2021-12-10 17:10:51 +08:00
attributify: false,
theme: {
extend: {
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px'
}
}
2021-12-07 16:36:16 +08:00
}
})