Customizer.js not showing up on front end - fresh install

I just installed a fresh copy of Sage. Using Bedrock. Customizer.js is not showing up on the front end. Is there something I need to do additionally to have it enqueued?

Any ideas?

Hi allurewebsolutions,

This is what I change to make the customizer.js work.

Path: (" lib/customizer.php ")
From: add_action(‘customize_preview_init’, NAMESPACE . ‘\customize_preview_js’);
To: add_action(‘wp_enqueue_scripts’, NAMESPACE . ‘\customize_preview_js’);

I register the " customize_preview_js " function to " wp_enqueue_scripts " to make it work…

Thanks,
q(^_^)p