chore: fix typo

This commit is contained in:
Mazen Touati
2025-11-11 18:47:59 +01:00
parent e36d8f4171
commit 328c13d6a7

View File

@@ -54,14 +54,14 @@ class NimbusServiceProvider extends PackageServiceProvider
parent::boot();
$this->tagAlongsideLaravelAssetes();
$this->tagAlongsideLaravelAssets();
}
/**
* Laravel assets are configured by default in Laravel to be published post update.
* We always want to force-publish the assets with Nimbus, so let's tag alongside them.
*/
private function tagAlongsideLaravelAssetes(): void
private function tagAlongsideLaravelAssets(): void
{
$vendorAssets = $this->package->basePath('/../resources/dist');
$appAssets = public_path('vendor/'.$this->package->shortName());