Generated by Spark: Got weird problem - Publish to https://low-code-react-app-b--johndoe6345789.github.app/ works fine but preview just shows Purple dot and loading.. + white page

This commit is contained in:
2026-01-17 00:07:35 +00:00
committed by GitHub
parent 90e3cb9c4d
commit 128d2ae6f4
4 changed files with 168 additions and 99 deletions

View File

@@ -9,6 +9,8 @@ interface ErrorFallbackProps {
}
export const ErrorFallback = ({ error, resetErrorBoundary }: ErrorFallbackProps) => {
console.error('ErrorFallback caught:', error);
if (import.meta.env.DEV) throw error;
return (
@@ -27,6 +29,11 @@ export const ErrorFallback = ({ error, resetErrorBoundary }: ErrorFallbackProps)
<pre className="text-xs text-destructive bg-muted/50 p-3 rounded border overflow-auto max-h-32">
{error.message}
</pre>
{error.stack && (
<pre className="text-xs text-muted-foreground bg-muted/50 p-3 rounded border overflow-auto max-h-48 mt-2">
{error.stack}
</pre>
)}
</div>
<Button