Open
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…eployment Co-authored-by: RohanExploit <178623867+RohanExploit@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix deployment issues on Vercel by removing pnpm requirement
Fix linting errors blocking Vercel deployment
Feb 8, 2026
There was a problem hiding this comment.
2 issues found across 29 files
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them.
<file name="app/page.tsx">
<violation number="1" location="app/page.tsx:73">
P2: Add rel="noopener noreferrer" to external links that use target="_blank" to prevent reverse tabnabbing.</violation>
</file>
<file name="app/components/particles.tsx">
<violation number="1" location="app/components/particles.tsx:20">
P3: Remove the console log from the particlesLoaded callback to avoid noisy production logging.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
| <a href={`mailto:${ROHAN_DATA.contact.email}`} className="text-text-tertiary hover:text-error transition-all hover:scale-110"><Mail className="h-6 w-6" /></a> | ||
| <a | ||
| href="https://github.com/RohanExploit" | ||
| target="_blank" |
There was a problem hiding this comment.
P2: Add rel="noopener noreferrer" to external links that use target="_blank" to prevent reverse tabnabbing.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At app/page.tsx, line 73:
<comment>Add rel="noopener noreferrer" to external links that use target="_blank" to prevent reverse tabnabbing.</comment>
<file context>
@@ -64,10 +68,33 @@ export default function Home() {
- <a href={`mailto:${ROHAN_DATA.contact.email}`} className="text-text-tertiary hover:text-error transition-all hover:scale-110"><Mail className="h-6 w-6" /></a>
+ <a
+ href="https://github.com/RohanExploit"
+ target="_blank"
+ className="text-text-tertiary hover:text-accent transition-all hover:scale-110"
+ >
</file context>
Suggested change
| target="_blank" | |
| target="_blank" | |
| rel="noopener noreferrer" |
| console.log(container); | ||
| }; | ||
| const particlesLoaded = async (container?: Container): Promise<void> => { | ||
| console.log(container); |
There was a problem hiding this comment.
P3: Remove the console log from the particlesLoaded callback to avoid noisy production logging.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At app/components/particles.tsx, line 20:
<comment>Remove the console log from the particlesLoaded callback to avoid noisy production logging.</comment>
<file context>
@@ -1,106 +1,106 @@
- console.log(container);
- };
+ const particlesLoaded = async (container?: Container): Promise<void> => {
+ console.log(container);
+ };
</file context>
RohanExploit
approved these changes
Apr 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Vercel build was failing during the lint step with 1900+ Prettier violations and multiple ESLint errors across the codebase.
Changes
Formatting: Auto-formatted all TS/TSX files with Prettier
ESLint violations:
Mail,Phone,Copy)getTypeColor,awards,mounted)'→',"→")frames.lengthto useEffect)Example
Lint now passes cleanly (
npm run lint✓), unblocking Vercel deployment.Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
fonts.googleapis.com/home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/Rohan-Portfolio/Rohan-Portfolio/node_modules/.bin/next build(dns block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.
Summary by cubic
Fix Vercel deployment by switching to npm and cleaning up formatting/lint errors. Vercel now builds with default settings.
Bug Fixes
Migration
Written for commit 8bc4653. Summary will update on new commits.