Skip to content

Instantly share code, notes, and snippets.

@yusufhm
Last active December 11, 2017 01:45
Show Gist options
  • Save yusufhm/c040e12693288df24350dc4721f0a4e7 to your computer and use it in GitHub Desktop.
Save yusufhm/c040e12693288df24350dc4721f0a4e7 to your computer and use it in GitHub Desktop.
Drupal 8 Views debug
<?php
// Skip cache so we don't need to do `drush cr` every time.
$config['views.settings']['skip_cache'] = TRUE;
// When views take a long time to execute, we might want to disable live preview.
$config['views.settings']['ui']['always_live_preview'] = FALSE;
// Show the SQL query.
$config['views.settings']['ui']['show']['sql_query']['enabled'] = TRUE;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment