Read More for Excerpt not working

You can modify the […] with simple function you place in functions.php

function wpdocs_excerpt_more( $more ) {
    return '<a href="'.get_permalink( get_the_ID() ).'">[...]</a>';
}
add_filter( 'excerpt_more', 'wpdocs_excerpt_more' );