We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uur vendor directory is protected by htaccess so package resource.
Is there a way to better way to display debugbar resource without pointing to vendor folder ?
We add this in root folder .htaccess to bypass:
# protect vendor/composer RewriteRule ^composer\.(lock|json)$ / [F,L] RewriteCond %{REQUEST_URI} !^/vendor/maximebf/debugbar/src/DebugBar/Resources RewriteRule ^vendor/(.*)?$ / [F,L]
The text was updated successfully, but these errors were encountered:
You could do your own route "bypass", look how others have done it barryvdh/laravel-debugbar/JavascriptRenderer.php barryvdh/laravel-debugbar/Controllers/AssetController.php Other option, you could make a symlink and change assets basepath on configs it all depends on your ingenuity, there are many ways
Sorry, something went wrong.
No branches or pull requests
Uur vendor directory is protected by htaccess so package resource.
Is there a way to better way to display debugbar resource without pointing to vendor folder ?
We add this in root folder .htaccess to bypass:
# protect vendor/composer RewriteRule ^composer\.(lock|json)$ / [F,L] RewriteCond %{REQUEST_URI} !^/vendor/maximebf/debugbar/src/DebugBar/Resources RewriteRule ^vendor/(.*)?$ / [F,L]
The text was updated successfully, but these errors were encountered: