I added this:
return [
'cache' => [
'pages' => [
'active' => true,
'ignore' => function ($page) {
return $page->title()->value() === 'Do not cache me';
}
]
]
];
to my config.php - but I do not see anything appearing in my /site/cache/ folder. What could be going wrong? It seems so simple that I don’t know where/how to troubleshoot.