From b8b5c12032f9528ced749af59d0649189195f01e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veikko=20Lintuj=C3=A4rvi?= Date: Mon, 18 May 2026 22:51:42 +0300 Subject: [PATCH] More cache fixes --- vite.config.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 6e6712b..10eda43 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -7,18 +7,15 @@ import vueDevTools from 'vite-plugin-vue-devtools' // https://vite.dev/config/ export default defineConfig({ - plugins: [ - vue(), - vueJsx(), - vueDevTools(), - ], + plugins: [vue(), vueJsx(), vueDevTools()], resolve: { alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) + '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, publicDir: 'public', build: { copyPublicDir: true, }, + cacheDir: '.cache/vite', })