Compare commits

...

2 Commits

Author SHA1 Message Date
admin 372abc310c chore(favicon): 使用预发布环境的图标
Docker Image / Quality and Bundle Budgets (push) Successful in 3m9s
Docker Image / Build and Push Docker Image (push) Successful in 1m50s
2026-07-16 15:30:10 +08:00
admin 31eda84ea9 test(chat): enable resizes-content keyboard experiment 2026-07-16 15:29:46 +08:00
4 changed files with 5 additions and 0 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 35 KiB

+5
View File
@@ -1,7 +1,12 @@
import type { Viewport } from "next";
import type { ReactNode } from "react";
import { ChatRouteProviders } from "@/providers/chat-route-providers";
export const viewport: Viewport = {
interactiveWidget: "resizes-content",
};
export default function ChatLayout({ children }: { children: ReactNode }) {
return <ChatRouteProviders>{children}</ChatRouteProviders>;
}