diff --git a/services/web/pkg/config/defaults/defaultconfig.go b/services/web/pkg/config/defaults/defaultconfig.go index a0c326d95..cf08feeb1 100644 --- a/services/web/pkg/config/defaults/defaultconfig.go +++ b/services/web/pkg/config/defaults/defaultconfig.go @@ -47,7 +47,20 @@ func DefaultConfig() *config.Config { ResponseType: "code", Scope: "openid profile email", }, - Apps: []string{"files", "search", "preview", "text-editor", "pdf-viewer", "external", "user-management"}, + Apps: []string{"files", "search", "text-editor", "pdf-viewer", "external", "user-management"}, + ExternalApps: []config.ExternalApp{ + { + ID: "preview", + Path: "web-app-preview", + Config: map[string]interface{}{ + "mimeTypes": []string{ + "image/tiff", + "image/bmp", + "image/x-ms-bmp", + }, + }, + }, + }, Options: map[string]interface{}{ "previewFileMimeTypes": []string{"image/gif", "image/png", "image/jpeg", "text/plain", "image/tiff", "image/bmp", "image/x-ms-bmp"}, },