diff --git a/compose.yaml b/compose.yaml index b8b8b94..1b9d4d7 100644 --- a/compose.yaml +++ b/compose.yaml @@ -5,7 +5,6 @@ services: context: . dockerfile: Dockerfile environment: - APP_ENV: ${APP_ENV:-dev} SERVER_NAME: ${SERVER_NAME:-localhost}, php:80 MERCURE_PUBLISHER_JWT_KEY: ${MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!} MERCURE_SUBSCRIBER_JWT_KEY: ${MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!} diff --git a/config/bundles.php b/config/bundles.php index f29c150..6f28f71 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -11,6 +11,6 @@ return [ Symfony\UX\TwigComponent\TwigComponentBundle::class => ['all' => true], Symfony\UX\LiveComponent\LiveComponentBundle::class => ['all' => true], Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], - Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['local' => true, 'prod' => false], + Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['all' => true, 'prod' => false], Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], ];