mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
11 lines
296 B
TypeScript
11 lines
296 B
TypeScript
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: []
|
|
});
|
|
|
|
export default overrideVaadinConfig(customConfig);
|