question out of curiosity: why do the example apps...
# questions
u
question out of curiosity: why do the example apps of grails 7 plugins using the separated-project structure from https://github.com/grails-plugins/grails-server-timing display reloading inactive? Is this on purpose and how to (re)enable it?
m
They do not include:
Copy code
developmentOnly 'org.springframework.boot:spring-boot-devtools'
Add that to enable reloading.
💡 1