From 5e99463cd0d6f7a642a8e06624a7de7ad4b79fac Mon Sep 17 00:00:00 2001
From: vben <anncwb@126.com>
Date: 星期三, 05 四月 2023 00:20:48 +0800
Subject: [PATCH] perf: Refactor vite configuration

---
 windi.config.ts |   15 ++++++---------
 1 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/windi.config.ts b/windi.config.ts
index 97e4aad..be79ddf 100644
--- a/windi.config.ts
+++ b/windi.config.ts
@@ -1,8 +1,6 @@
-import colors from 'windicss/colors';
-import { defineConfig } from 'vite-plugin-windicss';
-import { primaryColor } from './build/config/themeConfig';
+const primaryColor = '#0960bd';
 
-export default defineConfig({
+export default {
   darkMode: 'class',
   plugins: [createEnterPlugin()],
   theme: {
@@ -11,7 +9,6 @@
         '-1': '-1',
       },
       colors: {
-        ...colors,
         primary: primaryColor,
       },
       screens: {
@@ -23,13 +20,13 @@
       },
     },
   },
-});
+};
 
 /**
- * Used for animation when the element is displayed
- * @param maxOutput The larger the maxOutput output, the larger the generated css volume
+ * Used for animation when the element is displayed.
+ * @param maxOutput The larger the maxOutput output, the larger the generated css volume.
  */
-function createEnterPlugin(maxOutput = 10) {
+function createEnterPlugin(maxOutput = 6) {
   const createCss = (index: number, d = 'x') => {
     const upd = d.toUpperCase();
     return {

--
Gitblit v1.8.0