How to disable caching of CSS and JavaScript files?

Views 2
Date Mar 23, 2015 (9 years, 1 week, 1 day, 3 hours ago)
#1
Disabling caching CSS and JavaScript files

Replace in file `{your_domain}/includes/config.inc.php`
define("V_PRODUCTION", 1);
with
define("V_PRODUCTION", 0);

When you developing new templates or changing CSS / JavaScript files you must always disable caching!!!

Cache time 30 days by default, defined in the file: `{your_domain}/includes/config.inc.php`
define("V_CACHE_TIME", 30);

^
Run Tasks