windi.config.ts 341 B

12345678910111213141516171819
  1. import { defineConfig } from 'vite-plugin-windicss'
  2. export default defineConfig({
  3. important: true,
  4. extract: {
  5. include: ['index.html', 'src/**/*.{vue,jsx,tsx,html}']
  6. },
  7. theme: {
  8. extend: {
  9. colors: {
  10. dark: '#303030',
  11. light: '#ebebeb',
  12. blue: {
  13. b: '#0059DD'
  14. }
  15. }
  16. }
  17. }
  18. })