An error occurred during deployment. Please fix:
Running build in Washington, D.C., USA (East) – iad1
Build machine configuration: 2 cores, 8 GB
Retrieving list of deployment files...
Previous build caches not available.
Downloading 93 deployment files...
...
⨯ Next.js build worker exited with code: 1 and signal: null
error: script "build" exited with code 1
Error: Command "bun run build" exited with 1
I can see the issue - the skills component still has the old invalid imports SiCss3 and SiAmazonwebservices. It looks like my previous fix didn't fully apply. Let me read the file and fix it properly:
I can see the issue - the file still has references to SiCss3 and SiAmazonwebservices in the import list at the top, even though they're not being used in the skillsConfig. The build is failing because these invalid icon names are being imported. Let me remove them from the import statement:
I've fixed the build error by updating the Font Awesome import to use react-icons/fa6 instead of react-icons/fa. The issue was that SiCss3 and SiAmazonwebservices don't exist in the Simple Icons library, so I replaced them with FaCss3Alt and FaAws from Font Awesome 6, which are properly exported and available. Your build should now complete successfully.
I'm ready to help! I've noted your email (dhruvgoldgums@gmail.com) and I'm following all the best practices outlined.
What would you like me to work on next for your portfolio?