From 7a8725ee6fc36ffbd6a65c33fdac87c509c16081 Mon Sep 17 00:00:00 2001 From: fcarraUniSa Date: Wed, 18 Feb 2026 10:21:51 +0100 Subject: [PATCH] Update vite.config.ts --- vite.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index e94e243..631e77b 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,4 +1,3 @@ - import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; @@ -12,5 +11,10 @@ export default defineConfig({ changeOrigin: true, } } + }, + build: { + rollupOptions: { + external: ['react-markdown'] + } } });