The build failed due to type errors. Review the error log below and fix the issues before retrying.
Build log
[14:32:15] Starting build process...
[14:32:18] Installing dependencies... ✓
[14:32:45] Running type checks...
[14:33:02] × Type error: Property 'name' does not exist on type 'User'
[14:33:02]
[14:33:02] src/components/UserProfile.tsx:42:18
[14:33:02]
[14:33:02] 40 | function UserProfile({ user }: Props) {
[14:33:02] 41 | return (
[14:33:02] > 42 | <h1>{user.name}</h1>
[14:33:02] | ^
[14:33:02] 43 | )
[14:33:02] 44 | }
[14:33:02]
[14:33:02] Build failed with 1 errorCommon fixes:
Check TypeScript types
Verify that all types are correctly defined and imported. Run 'npm run typecheck' locally.
Clear build cache
Delete .next, node_modules, and lock files, then reinstall dependencies.
Update dependencies
Ensure all packages are up to date and compatible with your Node.js version.
Need help? Check the build documentation or contact support if the issue persists. Include the build ID for faster resolution.