aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorMarvin Borner2019-04-17 23:06:53 +0200
committerMarvin Borner2019-04-17 23:06:53 +0200
commit53be132a05d8f7ac9c5366710a3f66670ea0ad39 (patch)
tree9414912f523fa9a9bf994920f1460db30494fb3d /src/main
parentff8f11091a530358ef600eedf00c21e90efe62d3 (diff)
Removed non-working hot reloading of templates
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main')
-rw-r--r--src/main/kotlin/App.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt
index bb69db2..37c7f11 100644
--- a/src/main/kotlin/App.kt
+++ b/src/main/kotlin/App.kt
@@ -24,7 +24,7 @@ fun main() {
.start(7000)
// Set up templating
- RockerRuntime.getInstance().isReloading = true
+ RockerRuntime.getInstance().isReloading = false
JavalinRenderer.register(
FileRenderer { filepath, model -> Rocker.template(filepath).bind(model).render().toString() }, ".rocker.html"
)