Disabled Speedy Web Compiler for now since it causes issues with Vaadin and Hot Reload

This commit is contained in:
grimsi
2024-08-30 16:26:57 +02:00
parent 060225c65c
commit f12da9e791
8 changed files with 15665 additions and 25 deletions
+1 -6
View File
@@ -1,15 +1,10 @@
import reactSwc from '@vitejs/plugin-react-swc';
import type {UserConfigFn} from 'vite';
import {overrideVaadinConfig} from './vite.generated';
const customConfig: UserConfigFn = (env) => ({
// Here you can add custom Vite parameters
// https://vitejs.dev/config/
plugins: [
reactSwc({
tsDecorators: true,
}),
]
plugins: []
});
export default overrideVaadinConfig(customConfig);