diff --git a/vite.config.ts b/vite.config.ts index 7ea4b17..0a0c34b 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -17,6 +17,10 @@ export const alias = { // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], + build: { + minify: false, // Отключает минификацию + sourcemap: true, // Включает sourcemaps для отладки + }, resolve: { alias, },