Hugo: Disable watch and auto port append to URLs. Configure baseURL

Change-Id: Iaf3326782d503d412efc25277fa4224329b44000
diff --git a/core/installer/app.go b/core/installer/app.go
index 0eaa27d..1922b48 100644
--- a/core/installer/app.go
+++ b/core/installer/app.go
@@ -424,10 +424,10 @@
 
 func NewDodoApp(appCfg []byte) (EnvApp, error) {
 	return NewCueEnvApp(CueAppData{
-		"app.cue":        appCfg,
-		"base.cue":       []byte(cueBaseConfig),
-		"pcloud_app.cue": dodoAppCue,
-		"env_app.cue":    []byte(cueEnvAppGlobal),
+		"app.cue":  appCfg,
+		"base.cue": []byte(cueBaseConfig),
+		"dodo.cue": dodoAppCue,
+		"env.cue":  []byte(cueEnvAppGlobal),
 	})
 }