12345678910111213141516171819 |
- import { defineConfig } from 'vite-plugin-windicss'
- export default defineConfig({
- important: true,
- extract: {
- include: ['index.html', 'src/**/*.{vue,jsx,tsx,html}']
- },
- theme: {
- extend: {
- colors: {
- dark: '#303030',
- light: '#ebebeb',
- blue: {
- b: '#0059DD'
- }
- }
- }
- }
- })
|