I was trying to add a favicon in the <Helmet/>
tag of a React App
my current <Helmet/>
tag looks like this.
<Helmet
title="ABC"
meta={[
{ name: "ABC", content: "ABC" }
]}
links={
rel='icon',
type='image/png',
sizes='16x16',
href={require('favicon.ico')}
}
/>
But I'm getting an error about an unexpected token, any inputs on how to add a favicon? Thanks for the help in advance.