fix: do not clean folder

This commit is contained in:
Wlad Meixner 2025-07-31 11:14:11 +02:00
parent b48472abe7
commit b8bf9581a4
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
},
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.build.json && vite build",
"build": "rm -rf ./dist && tsc -p tsconfig.build.json && vite build",
"lint": "biome lint --write ./src",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",

View File

@ -77,6 +77,6 @@ export default defineConfig({
},
},
sourcemap: true,
emptyOutDir: true,
emptyOutDir: false,
},
});