You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support absolute project icon URLs and more image formats (#452)
- Allow project icons to point at external image URLs and preserve query/hash on local paths
- Expand favicon discovery and serving to cover common image types
- Update settings copy and icon editor placeholders to reflect URL support
Copy file name to clipboardExpand all lines: apps/web/src/routes/_chat.settings.index.tsx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1896,7 +1896,7 @@ function SettingsRouteView() {
1896
1896
1897
1897
<SettingsRow
1898
1898
title="Project icon"
1899
-
description="Override the icon shown next to this project in the sidebar. Use a path relative to the project root, such as `public/icon.svg`."
1899
+
description="Override the icon shown next to this project in the sidebar. Use a path relative to the project root or an absolute image URL, such as `public/icon.svg` or `https://example.com/icon.png`."
Copy file name to clipboardExpand all lines: apps/web/src/routes/_chat.settings.tsx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3499,7 +3499,7 @@ function SettingsRouteView() {
3499
3499
3500
3500
<SettingsRow
3501
3501
title="Project icon"
3502
-
description="Override the icon shown next to this project in the sidebar. Use a path relative to the project root, such as `public/icon.svg`."
3502
+
description="Override the icon shown next to this project in the sidebar. Use a path relative to the project root or an absolute image URL, such as `public/icon.svg` or `https://example.com/icon.png`."
0 commit comments