Skip to content

Commit

Permalink
Refactor application configuration and update package.json with engin…
Browse files Browse the repository at this point in the history
…e and bugs information
  • Loading branch information
yortez committed Jan 7, 2025
1 parent 7a053df commit 474f548
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
web: __DIR__ . '/../routes/web.php',
commands: __DIR__ . '/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
//
$middleware->trustProxies(at: '*');
})
->withExceptions(function (Exceptions $exceptions) {
//
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,10 @@
"type": "git",
"url": "git+https://github.com/yortez/bbh.git"
},

"bugs": {
"url": "https://github.com/yortez/bbh/issues"
},
"engines": { "node": "18.x" },
"homepage": "https://github.com/yortez/bbh#readme"
}
2 changes: 2 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,7 @@
"CACHE_DRIVER": "array",
"LOG_CHANNEL": "stderr",
"SESSION_DRIVER": "cookie"


}
}

0 comments on commit 474f548

Please sign in to comment.