Solution found:
I had to add the following method to my DashboardController:
public function configureAssets(): Assets { $assets = parent::configureAssets(); $assets->addWebpackEncoreEntry('app'); return $assets; }
May it be useful to someone else !