container->has(BackendApplication::class) && $this->backendEntryPointResolver->isBackendRoute($request)) { return $this->container->get(BackendApplication::class)->handle($request); } if ($this->container->has(FrontendApplication::class)) { return $this->container->get(FrontendApplication::class)->handle($request); } throw new \Exception('TYPO3 is not configured. Please install typo3/cms-backend and/or typo3/cms-frontend', 1704788092); } }