gohttpdUi/windi.config.ts

21 lines
372 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: {
2021-12-11 20:50:05 +08:00
sm: '768px',
md: '992px',
lg: '1200px',
xl: '1920px'
2021-12-10 17:10:51 +08:00
}
}
2021-12-07 16:36:16 +08:00
}
})