This path is correctly transformed:
"image": "/uploads/jumbotron.jpg" -> "image": "../../uploads/jumbotron.jpg"
This path is not:
"image": "/uploads/macaron-animé.png" -> "image": "..\\uploads\\macaron-animé.png"
When removing the accent in the filename, everything works.
This path is correctly transformed:
"image": "/uploads/jumbotron.jpg"
->"image": "../../uploads/jumbotron.jpg"
This path is not:"image": "/uploads/macaron-animé.png"
->"image": "..\\uploads\\macaron-animé.png"
When removing the accent in the filename, everything works.From what I checked, the problem can be resolved by removing the outdated "slash" dependency and using gatsby-core-utils where the same function was fixed and is working as expected. https://github.com/gatsbyjs/gatsby/commit/9929cf06437873793333ece28be6ca41c3dffe4b#diff-039be84c08b1575fb3dbce971ae4089a PR here: https://github.com/gatsbyjs/gatsby/pull/14372
Env: