As of right now you’d need to manually hook it in like this:
add_action( 'generate_before_content', 'tu_add_featured_image' );
function tu_add_featured_image() {
if ( has_post_thumbnail() && is_singular() ) {
the_post_thumbnail();
}
}
We’ll be adding this as an option in the future π