How to add a favicon to a VTEX IO store

Hi @gleyciane.costa, how are you?

I would try using the Helmet component, which allows you to add HTML tags inside the <head> tag of a page.

import React from 'react'
import { Helmet } from 'vtex.render-runtime'
import favicon from './images/favicon.png'

function MyComponent() {
  return (
    <>
      <Helmet>
        <link rel="icon" href={favicon} />
      </Helmet>
    </>
  )
}

export default MyComponent