From e58dd0e4fdb8408a837d43839ce91e7882ba9a48 Mon Sep 17 00:00:00 2001 From: Jeki Gates <149064800+jekigates@users.noreply.github.com> Date: Mon, 17 Jun 2024 23:59:33 +0700 Subject: [PATCH] Disable React Server Component https://github.com/saltyshiomix/nextron/issues/449 "But we should be careful, electron can handle only static files when production build, so nextron doesn't support React Server Components." --- components.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components.json b/components.json index 80bf5c0..ebfd2a8 100644 --- a/components.json +++ b/components.json @@ -1,7 +1,7 @@ { "$schema": "https://ui.shadcn.com/schema.json", "style": "default", - "rsc": true, + "rsc": false, "tsx": true, "tailwind": { "config": "tailwind.config.js", @@ -14,4 +14,4 @@ "components": "@/components", "utils": "@/lib/utils" } -} \ No newline at end of file +}