Ver Fonte

fix(vite): correct syntax error in config

unknown há 3 horas atrás
pai
commit
8d4efc5b9e
1 ficheiros alterados com 5 adições e 4 exclusões
  1. 5 4
      vite.config.ts

+ 5 - 4
vite.config.ts

@@ -54,8 +54,9 @@ export default defineConfig(({ mode }) => {
     legalComments: 'none',
     target: 'esnext',
   },
-  test: {
-    globals: true,
-    environment: "jsdom",
-  },
+    test: {
+      globals: true,
+      environment: "jsdom",
+    },
+  };
 });