Load js/app.js on <head>

You should be able to do this in app/setup.php:

add_action('wp_enqueue_scripts', function () {
    bundle('app')->enqueueCss()->enqueueJs(false);
}, 100);
1 Like