From 54a8164e3d27f4f9a3ccead7ed17a867876dbd93 Mon Sep 17 00:00:00 2001 From: Lao Date: Fri, 4 Jul 2025 16:30:59 +0800 Subject: [PATCH] Update copilot.mdx update the IWidgetConfig type --- deploy/copilot.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deploy/copilot.mdx b/deploy/copilot.mdx index 50ef1f9..2f23f45 100644 --- a/deploy/copilot.mdx +++ b/deploy/copilot.mdx @@ -74,6 +74,10 @@ export interface IWidgetConfig { // The tailwind classname to apply to the button className?: string; }; + // custom CSS styles in copilot + customCssUrl?: string; + // allows passing extra query parameters in API requests to the Chainlit server + additionalQueryParamsForAPI?: Record; } ```