Skip to content

Commit

Permalink
Merge pull request #66 from msmakouz/bugfix/fix-rr-config
Browse files Browse the repository at this point in the history
Removing an unnecessary section in RR config, adding return type
  • Loading branch information
butschster committed Jul 28, 2022
2 parents 95ed158 + da0bacc commit bcc8bd1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .rr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ server:
command: "php app.php"
relay: pipes

# serve static files
static:
dir: "public"

http:
address: 0.0.0.0:8080
middleware: [ "gzip", "static" ]
Expand Down
2 changes: 1 addition & 1 deletion app/routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
| contains the "web" middleware group.
|
*/
return function (RoutingConfigurator $routes) {
return function (RoutingConfigurator $routes): void {
$routes->add('html', '/<action>.html')->controller(HomeController::class);
};

0 comments on commit bcc8bd1

Please sign in to comment.