Procházet zdrojové kódy

🔧 chore(vite): update build ignore configuration

- add tests directory to build ignore list to reduce bundle size
yourname před 2 měsíci
rodič
revize
74ab81962a
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      vite.config.ts

+ 1 - 0
vite.config.ts

@@ -26,6 +26,7 @@ export default defineConfig({
         'coverage/**',
         'playwright-report/**',
         'test-results/**',
+        'tests/**',
       ]
     }
   },