Why is it important to set "$smarty->force_compile = true;" when using pre-filters in Smarty templates?

Setting "$smarty->force_compile = true;" is important when using pre-filters in Smarty templates because it ensures that the template is recompiled every time it is loaded, which is necessary for the pre-filters to be applied correctly. Without forcing recompilation, changes made in the pre-filters may not be reflected in the output.

// Enable force_compile to ensure templates are recompiled when using pre-filters
$smarty->force_compile = true;