remove all semicolons

This commit is contained in:
RuoYi
2025-04-27 09:58:29 +08:00
parent 7de94e2ea3
commit 2f8a257efd
83 changed files with 2178 additions and 2178 deletions

View File

@@ -59,7 +59,6 @@ export default defineConfig(({ mode, command }) => {
}
}
},
//fix:error:stdin>:7356:1: warning: "@charset" must be the first rule in the file
css: {
postcss: {
plugins: [
@@ -68,7 +67,7 @@ export default defineConfig(({ mode, command }) => {
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
atRule.remove();
atRule.remove()
}
}
}