--- title: Media Center --- Added in: [`release-2026-03`](/operations/releases/release-2026-03/) The top-level `mediaCenter` project config property has been added to store any configurations which affect all media types. At the moment this only includes the [Usage Log](#usage-log) feature. The existing configuration of the Media Library is somewhat fragmented: - Many configuration properties which affect the Media Center are defined within the individual [Media Types](/reference/project-config/media-types/llms.txt). - Some configurations are stored in [Editor Settings](/reference/project-config/editor-settings/llms.txt#media-library), such as [Dashboard Cards](/reference/project-config/editor-settings/llms.txt#dashboard-cards) and [Prefilling Behavior](/reference/project-config/editor-settings/llms.txt#prefilling-behavior). - [Dashboards](/reference/project-config/editor-settings/llms.txt#dashboards) are configured in the same array as document dashboards. There is also a guide for [Media Library Dashboard Configuration](/guides/media-library/media-library-setup/llms.txt#media-library-dashboard-configuration). The `mediaCenter` project config property can be defined as follows: ```js mediaCenter: { usageLog: { purposes: [ { handle: 'print', label: { en: 'Print', de: 'Druck' }, internal: false, paramsSchema: [ { handle: 'page', type: 'li-integer', ui: { label: { en: 'Page', de: 'Seite' } } } ] } ] } } ``` ## Usage Log Added in: [`release-2026-03`](/operations/releases/release-2026-03/) Please see the [Usage Log](/guides/media-library/media-library-setup/llms.txt#usage-log) section of the Media Library guide for further information.