mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
510 B
25 lines
510 B
import { defineConfig } from 'windicss/helpers' |
|
// @ts-expect-error no types for plugin-scrollbar |
|
import scrollbar from '@windicss/plugin-scrollbar' |
|
import colors from './utils/colorsUtils' |
|
|
|
export default defineConfig({ |
|
extract: { |
|
include: ['**/*.{vue,html,jsx,tsx}'], |
|
exclude: ['node_modules', '.git'], |
|
}, |
|
|
|
attributify: true, |
|
darkMode: 'class', |
|
|
|
plugins: [scrollbar], |
|
|
|
theme: { |
|
extend: { |
|
colors: { |
|
dark: colors.dark, |
|
light: colors.light, |
|
}, |
|
}, |
|
}, |
|
})
|
|
|