Vercel Deployment Not Updating.
Unanswered
American black bear posted this in #help-forum
American black bearOP
Hi everyone, I'm running into an issue with SVG icons. They work fine locally, but when I try to deploy on Vercel, it fails.
Here's the error:
2 | import { FaTwitter, FaLinkedinIn } from "react-icons/fa";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
My local file currently looks like this (before any code changes):
import { FaTwitter } from "react-icons/fa";
import { FaLinkedin } from "react-icons/fa";
I've committed to GitHub and redeployed, but it seems like the code on Vercel isn't updating.
Here's the error:
2 | import { FaTwitter, FaLinkedinIn } from "react-icons/fa";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
My local file currently looks like this (before any code changes):
import { FaTwitter } from "react-icons/fa";
import { FaLinkedin } from "react-icons/fa";
I've committed to GitHub and redeployed, but it seems like the code on Vercel isn't updating.
2 Replies
should be
import { FaTwitter, FaLinkedin } from "react-icons/fa";