From 2f8a257efd2b64dc40666b0d332edb7824a9768d Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: 星期日, 27 四月 2025 09:58:29 +0800
Subject: [PATCH] remove all semicolons
---
vite.config.js | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/vite.config.js b/vite.config.js
index 8a49d01..13d1fcb 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -59,7 +59,6 @@
}
}
},
- //fix:error:stdin>:7356:1: warning: "@charset" must be the first rule in the file
css: {
postcss: {
plugins: [
@@ -68,7 +67,7 @@
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
- atRule.remove();
+ atRule.remove()
}
}
}
--
Gitblit v1.9.3