When building heavy pages locally, bump PHP execution and memory limits to reduce dev friction. ini_set('max_execution_time', 360); ini_set('memory_limit', '999M'); Why: - Indexing and data warmups can spike memory/CPU. - Prevents premature timeouts during debug builds. Caveat: - Dev-only. Never commit or use these values in production.