Update dist

This commit is contained in:
2026-03-19 05:27:31 +01:00
parent 00fed4336d
commit f722d4ae47
19 changed files with 296 additions and 26 deletions
+7 -1
View File
@@ -9,5 +9,11 @@ export default function DefaultServerErrorPage({ children, }) {
justifyContent: "center",
flexDirection: "column",
gap: "20px",
}, children: [_jsx("h1", { children: "500 Internal Server Error" }), _jsx("span", { children: children })] }));
}, children: [_jsx("h1", { children: "500 Internal Server Error" }), _jsx("div", { style: {
maxWidth: "800px",
overflowWrap: "break-word",
wordBreak: "break-all",
maxHeight: "80vh",
overflowY: "auto",
}, children: children })] }));
}