Rails ver: 5.1.4
I want to link a image from 'app/assets/images/logo.png'.
File index.html.erb
<body>
<%= link_to image_tag('logo.png') %>
</body>
When I run, It give me a Error: Encoding::InvalidByteSequenceError and description show "\xB4" on UTF-8.
I thinks it's an Encoding error when I save file. I tried to save all of my file in UTF-8 (editor SublimeText) but it still not working. Is anyone meet same error?
Thanks everyone !