We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 258764e + 629cc18 commit e6b467bCopy full SHA for e6b467b
src/Config/env.default
@@ -3,7 +3,7 @@
3
#--------------------------------------------------------------------
4
5
VITE_AUTO_INJECTING=true
6
-VITE_EXLUDED_ROUTES=''
+VITE_EXCLUDED_ROUTES=''
7
VITE_ORIGIN='http://localhost:3479'
8
VITE_PORT=3479
9
VITE_BUILD_DIR='build'
src/Vite.php
@@ -117,7 +117,7 @@ public static function isReady(): bool
117
*/
118
public static function routeIsNotExluded(): bool
119
{
120
- $routes = explode(',', env('VITE_EXLUDED_ROUTES'));
+ $routes = explode(',', env('VITE_EXCLUDED_ROUTES'));
121
122
# remove spaces before and after the route.
123
// foreach($routes as $i => $route) $routes[$i] = ltrim( rtrim($route) );
0 commit comments