mikefrey / hapi-dust

hapi compatibility for dust.js
MIT License
5 stars 3 forks source link

isCached: false - does not work #8

Open Dim77 opened 7 years ago

Dim77 commented 7 years ago

Hi,

I am using hapi-dust with the following settings in server.views:

{ compileMode: 'async', isCached: false,

engines: { dust: require('hapi-dust') },
relativeTo: require('path').resolve('.'),
path: 'views',
partialsPath: 'views/partials',
helpersPath: 'views/helpers',

}

During development I would like to have cache to be disabled. However, setting isCached to false - does not work.

Do I do something wrong ?