The file /zxcvbn.min.js appears to be related to a password strength tool. Which is great, but it's causing issues in Google Pagespeed score (because it's not being pulled by the CDN), and when I use the Chrome developer network tool, I don't even see it.
I can see that it's being loaded by the script-loader.php file, but I'm not familiar enough with php to know how to change it to pull from the cdn rather than the main domain.
Here is the code I'm seeing in the script-loader.php file:
$scripts->add( 'zxcvbn-async', "/wp-includes/js/zxcvbn-async$suffix.js", array(), '1.0' );
did_action( 'init' ) && $scripts->localize( 'zxcvbn-async', '_zxcvbnSettings', array(
'src' => empty( $guessed_url ) ? includes_url( '/js/zxcvbn.min.js' ) : $scripts->base_url . '/wp-includes/js/zxcvbn.min.js',
) );
Can someone help me out here?