Update modal backdrop blur effect and Vite configuration

- Changed backdrop blur effect in multiple modal components from 32px to 2px for a more subtle appearance.
- Updated Vite configuration to use automatic JSX runtime for improved compatibility with React 17 and above.
This commit is contained in:
salirezav
2025-09-19 12:43:37 -04:00
parent ed6c242faa
commit 4e0e9f9d3f
10 changed files with 71 additions and 58 deletions

View File

@@ -5,7 +5,9 @@ import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
react({
jsxRuntime: 'automatic'
}),
tailwindcss(),
],
server: {