mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
import { resolve } from 'path'
|
|
import { defineConfig } from 'windicss/helpers'
|
|
|
|
export default defineConfig({
|
|
darkMode: 'class',
|
|
// https://windicss.org/posts/v30.html#attributify-mode
|
|
attributify: true,
|
|
extract: {
|
|
include: [resolve(__dirname, 'src/**/*.{vue,html}')],
|
|
},
|
|
})
|