Jelajahi Sumber

Update vite.config.js

增加新的组件后,vite打包报错@charset,需要增加配置
java2sap 3 tahun lalu
induk
melakukan
ac03526ea5
1 mengubah file dengan 17 tambahan dan 0 penghapusan
  1. 17 0
      vite.config.js

+ 17 - 0
vite.config.js

@@ -32,5 +32,22 @@ export default defineConfig(({ mode, command }) => {
         }
       },
     },
+     //fix:error:stdin>:7356:1: warning: "@charset" must be the first rule in the file
+    css: {
+      postcss: {
+        plugins: [
+          {
+            postcssPlugin: 'internal:charset-removal',
+            AtRule: {
+              charset: (atRule) => {
+                if (atRule.name === 'charset') {
+                  atRule.remove();
+                }
+              }
+            }
+          }
+        ],
+      },
+    },
   }
 })