Skip to content

Instantly share code, notes, and snippets.

@alex-79
Created October 13, 2020 11:29
Show Gist options
  • Save alex-79/a328fa57a2866062f0c380609662f557 to your computer and use it in GitHub Desktop.
Save alex-79/a328fa57a2866062f0c380609662f557 to your computer and use it in GitHub Desktop.
#!/bin/bash
# https://mirasvit.com/blog/common-issues-and-few-hacks-with-magento-2-full-page-cache.html
cd app/design/frontend/ && grep --recursive -l 'cacheable="false"' * && cd ../../..;
cd app/code && grep --recursive -l 'cacheable="false"' * && cd ../..;
cd vendor && grep --recursive -l 'cacheable="false"' * && cd ..;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment