Hi,
I am following the nova book and created a controller+view and a new route.
On the first request to the new route the template file was compiled and rendered.
But on subsequent requests and after a new start (with rebar3 nova serve in dev mode), I
saw error messages:
=DEBUG REPORT==== 15-Jun-2026::05:06:57.605949 ===
Set state for plugin nova_request_plugin; NewState: #{}
=ERROR REPORT==== 15-Jun-2026::05:06:57.611317 ===
reason: nofile
msg: <<"Nova could not render template">>
template: blog_profile_dtl
=ERROR REPORT==== 15-Jun-2026::05:06:57.611383 ===
reason: {template_not_found,blog_profile_dtl}
msg: <<"Controller threw an exception">>
class: throw
Some questions on templates:
- are templates compiled when a new template file is detected? or on demand at runtime?
- are the compiled templates only contained in memory?
- and, for my situation: what do i have to do to get and keep templates?