I'd like to control caching through config.
inspiration
this is how I control caching in development in with eta
const eta = new Eta({
views: `${Deno.cwd()}/views/`,
cache: !dev
});
example interface
a similar api in vento could allow for this
const env = vento({
includes: `${Deno.cwd()}/views/`,
cache: false // defaults to `true`
});