File tree Expand file tree Collapse file tree 5 files changed +20
-7
lines changed Expand file tree Collapse file tree 5 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 1
1
core /assets /vendor /** /*
2
2
core /modules /locale /tests /locale_test.js
3
- core / vendor /** /*
3
+ vendor /** /*
4
4
sites /** /files /** /*
5
5
libraries /** /*
6
6
sites /** /libraries /** /*
Original file line number Diff line number Diff line change 51
51
* .png - text diff
52
52
* .phar - text diff
53
53
* .exe - text diff
54
+ * .ttf - text diff
Original file line number Diff line number Diff line change 238
238
* Example:
239
239
* @code
240
240
* $config_directories = array(
241
- * CONFIG_ACTIVE_DIRECTORY => '/some/directory/outside/webroot',
242
241
* CONFIG_STAGING_DIRECTORY => '/another/directory/outside/webroot',
243
242
* );
244
243
* @endcode
610
609
*
611
610
* The options below return a simple, fast 404 page for URLs matching a
612
611
* specific pattern:
613
- * - $conf ['system.performance']['fast_404']['exclude_paths']: A regular
612
+ * - $config ['system.performance']['fast_404']['exclude_paths']: A regular
614
613
* expression to match paths to exclude, such as images generated by image
615
614
* styles, or dynamically-resized images. The default pattern provided below
616
615
* also excludes the private file system. If you need to add more paths, you
617
616
* can add '|path' to the expression.
618
- * - $conf ['system.performance']['fast_404']['paths']: A regular expression to
617
+ * - $config ['system.performance']['fast_404']['paths']: A regular expression to
619
618
* match paths that should return a simple 404 page, rather than the fully
620
619
* themed 404 page. If you don't have any aliases ending in htm or html you
621
620
* can add '|s?html?' to the expression.
622
- * - $conf ['system.performance']['fast_404']['html']: The html to return for
621
+ * - $config ['system.performance']['fast_404']['html']: The html to return for
623
622
* simple 404 pages.
624
623
*
625
624
* Remove the leading hash signs if you would like to alter this functionality.
Original file line number Diff line number Diff line change 52
52
/**
53
53
* Disable the render cache (this includes the page cache).
54
54
*
55
+ * Note: you should test with the render cache enabled, to ensure the correct
56
+ * cacheability metadata is present. However, in the early stages of
57
+ * development, you may want to disable it.
58
+ *
55
59
* This setting disables the render cache by using the Null cache back-end
56
60
* defined by the development.services.yml file above.
57
61
*
58
62
* Do not use this setting until after the site is installed.
59
63
*/
60
- $ settings ['cache ' ]['bins ' ]['render ' ] = 'cache.backend.null ' ;
64
+ # $settings['cache']['bins']['render'] = 'cache.backend.null';
65
+
66
+ /**
67
+ * Disable Dynamic Page Cache.
68
+ *
69
+ * Note: you should test with Dynamic Page Cache enabled, to ensure the correct
70
+ * cacheability metadata is present (and hence the expected behavior). However,
71
+ * in the early stages of development, you may want to disable it.
72
+ */
73
+ # $settings['cache']['bins']['dynamic_page_cache'] = 'cache.backend.null';
61
74
62
75
/**
63
76
* Allow test modules and themes to be installed.
Original file line number Diff line number Diff line change 50
50
* @endcode
51
51
*
52
52
* @see default.settings.php
53
- * @see conf_path ()
53
+ * @see \Drupal\Core\DrupalKernel::getSitePath ()
54
54
* @see https://www.drupal.org/documentation/install/multi-site
55
55
*/
You can’t perform that action at this time.
0 commit comments