How to remove the space before the ellipsis in excerpt?

WordPress adds a space when applying the excerpt_more filters. Filter the excerpt_more to change this correctly.

https://codex.wordpress.org/Plugin_API/Filter_Reference/excerpt_more

add_filter('excerpt_more', 'theme_name_filter_excerpt_more');

function theme_name_filter_excerpt_more() {
    return '…';
}