Sure, just set in when your register your view service:
// Setting up the view component
$di->set('view', function() use ($config) {
$view = new Phalcon\Mvc\View();
$view->setViewsDir($config->application->viewsDir); // HERE PATH TO DIR WHERE YOU WOLD LIKE TO STORE COMPILED TEMPLATES
...