diff --git a/source/docs/v3/features/vite-bundler.blade.md b/source/docs/v3/features/vite-bundler.blade.md index 3abf2b4..d728302 100644 --- a/source/docs/v3/features/vite-bundler.blade.md +++ b/source/docs/v3/features/vite-bundler.blade.md @@ -6,4 +6,11 @@ section: content # Vite bundler {#vite-bundler} -Enabling the ViteBundler feature makes Vite generate the correct asset paths using the `global_asset()` helper. +Enabling the ViteBundler feature makes Vite generate the correct asset paths using the `global_asset()` helper. To enable the feature, uncomment `Stancl\Tenancy\Features\ViteBundler::class` in tenancy config's `features`. + +```php +'features' => [ + // [...] + Stancl\Tenancy\Features\ViteBundler::class, +], +```