Hi all,
I just created new Phalcon project via devtools. Theme engine is volt. There is no newline at index page's source code. Anybody knows to fix it?
Problem solved. I changed
echo str_replace(["\n","\r","\t"], '', $application->handle()->getContent());
to
echo $application->handle()->getContent();
in /public/index.php