We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 406aa5c commit 90b29e1Copy full SHA for 90b29e1
1 file changed
src/helpers.php
@@ -4,10 +4,7 @@
4
5
namespace Yard\SageChildThemeSupport;
6
7
-use Illuminate\Foundation\Vite as FoundationVite;
8
-
9
use Roots\Acorn\Bootloader;
10
-use Yard\SageChildThemeSupport\Assets\Vite;
11
12
function bootloader(): Bootloader
13
{
@@ -21,7 +18,10 @@ function bootloader(): Bootloader
21
18
\Yard\SageChildThemeSupport\Console\Kernel::class
22
19
);
23
20
24
- $bootloader->getApplication()->alias(Vite::class, FoundationVite::class);
+ $bootloader->getApplication()->alias(
+ \Yard\SageChildThemeSupport\Assets\Vite::class,
+ \Illuminate\Foundation\Vite::class
+ );
25
26
return $bootloader;
27
}
0 commit comments