Skip to content
New issue

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

Use microbundle instead of Webpack #312

Merged
merged 10 commits into from
Sep 4, 2020
Prev Previous commit
Next Next commit
Fix js path in Blade route generator
  • Loading branch information
bakerkretzmar committed Aug 1, 2020
commit c6bf560a49bf750684d80d59ba064dec1c16810d
2 changes: 1 addition & 1 deletion src/BladeRouteGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private function generateMergeJavascript($json, $nonce)

private function getRouteFilePath()
{
return __DIR__ . '/../dist/js/route' . (app()->isLocal() ? '' : '.min') . '.js';
return __DIR__ . '/../dist/route.js';
}

private function getRouteFunction()
Expand Down