Hi, I have frontity site working in embedded mode, but some images are not displayed when I access the web from a domain.
You can see all the images on Vercel
However, the logo and icons are not displayed on domain
I have updated Frontity but they still do not work. This is the header code:
import Logo from "../assets/logo.png";
const Header = ({ state }) => {
return (
<>
<BrandContainer>
<StyledLink link="/">
<StyledImage src={Logo} alt="Desarrollo Web" width="100%" height="100%" />
</StyledLink>
<MobileMenu />
</BrandContainer>
<Nav />
</>
);
};
export default connect(Header);
Any help is welcome, thanks