shlink/config/autoload/router.local.php.dist

17 lines
233 B
Text
Raw Normal View History

<?php
declare(strict_types=1);
2020-01-01 23:11:53 +03:00
use Mezzio\Router\FastRouteRouter;
return [
'router' => [
// 'base_path' => '',
'fastroute' => [
FastRouteRouter::CONFIG_CACHE_ENABLED => false,
],
],
];