Image not deployed

I have published a blog with frontity and now.sh but the image I use in the theme gives an error 404 The page could not be found. In local it´s working

import photo from "../assets/photo.png";

const Photo = () => (
                     <img src={photo} a />);

You can take a look at the code in https://github.com/goiblas/personal-blog

I think that I have to add into now.json like the favicon.ico but I’m not sure, can you help me?

Ohhh, I see. Yes, you are right.

Images end up in /static/images so this part of the now.json file

    {
      "src": "build/static/*",
      "use": "@now/static"
    },

needs to use subfolder globs:

    {
      "src": "build/static/**/*",
      "use": "@now/static"
    },

I have already updated the docs!