Skip to content

Commit

Permalink
Merge pull request #3 from lucky-media/1.1
Browse files Browse the repository at this point in the history
v1.1 fixed baseurl and added debugbar
  • Loading branch information
lokmanm authored Jun 7, 2023
2 parents a01f514 + 0203a8d commit b155d84
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
composer.lock
/phpunit.xml
.phpunit.result.cache
.eslintcache
5 changes: 5 additions & 0 deletions src/Console/InstallsReactorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ protected function installInertiaReact()
}

// Install Ide Helper
if (! $this->requireComposerPackages(['barryvdh/laravel-debugbar:^3.8'], true)) {
return 1;
}

// Install Laravel Debugbar
if (! $this->requireComposerPackages(['barryvdh/laravel-ide-helper:^2.13'], true)) {
return 1;
}
Expand Down
2 changes: 1 addition & 1 deletion stubs/inertia-react/jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"baseUrl": "../inertia-common",
"baseUrl": "./",
"paths": {
"@/*": ["resources/js/*"]
}
Expand Down

0 comments on commit b155d84

Please sign in to comment.