GatsbyInstantPreviewRouteSubscriber.php in Gatsby Live Preview & Incremental Builds 8
File
modules/gatsby_instantpreview/src/Routing/GatsbyInstantPreviewRouteSubscriber.php
View source
<?php
namespace Drupal\gatsby_instantpreview\Routing;
use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;
class GatsbyInstantPreviewRouteSubscriber extends RouteSubscriberBase {
protected function alterRoutes(RouteCollection $collection) {
if ($route = $collection
->get('gatsby.gatsby_admin_form')) {
$route
->setDefault('_form', 'Drupal\\gatsby_instantpreview\\Form\\GatsbyInstantPreviewAdminForm');
}
}
}