From 610bcf2b8e86e479e7abd5bf83aa075b6c67fb82 Mon Sep 17 00:00:00 2001 From: Asep Haryana Saputra <90584806+MythEclipse@users.noreply.github.com> Date: Thu, 21 May 2026 12:30:04 +0000 Subject: [PATCH] feat(config): add build options for rolldown checks in Vite configuration --- frontend/vite.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 8ae529e..3ce3aab 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -3,6 +3,13 @@ import react from "@vitejs/plugin-react"; export default defineConfig({ plugins: [react()], + build: { + rolldownOptions: { + checks: { + pluginTimings: false, + }, + }, + }, server: { middlewareMode: false, },