Platform Dependent Config OR Platform Dependent Switch for Default Queries in Current Config

My default queries are quite heavy (resource intensive)

These run fine on my laptop.

However, on my phone they make the app unusable.

This feature request is for either (or both) of the following:

1) Platform Dependent Config

Logseq could have the following config files:

logseq/config.edn
logseq/config-mac.edn
logseq/config-phone.edn

The following option could be made available in config.edn:

 :platform-dependent-config-options
 {
  :configWindows false ; Defaults to this config.
  :configMac 'config-mac.edn'
  :configiPhone 'config-phone.edn'
  :configAndriod 'config-phone.edn'
 }

OR:

2) Platform Dependent Switch for Default Queries

 ;; All platforms
 :default-queries
 {:journals
  [ ;; …
  ]
 }

 ;; Desktop only
 :default-queries-desktop
 {:journals
  [ ;; …
  ]
 }

 ;; Mobile only
 :default-queries-phone
 {:journals
  [ ;; …
  ]
 }