---
title: "Breaking: #98100 - Compression and Concatenation of JavaScript and CSS files for Backend removed"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-98100-1659877890"
source: "Changelog/12.0/Breaking-98100-CompressionAndConcatenationOfJavaScriptAndCSSFilesForBackendRemoved.rst"
typo3-version: "12.0"
typo3-major: 12
type: "breaking"
issue: 98100
forge: "https://forge.typo3.org/issues/98100"
tags: ["LocalConfiguration", "PHP-API", "FullyScanned", "ext:backend"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #98100 - Compression and Concatenation of JavaScript and CSS files for Backend removed {#breaking-98100-1659877890}

See [forge#98100](https://forge.typo3.org/issues/98100)

## Description {#description}

Extension `backend` introduced compression and concatenation of CSS and JavaScript
files in version 4.3 due to limitations of Internet Explorer 9 and lower.
Since then, extension `backend` uses JavaScript modules and loading via RequireJS and
ES Modules, as well as CSS compression and concatenation by default during
build time.

For this reason, this feature is removed from the actual `ResourceCompressor`,
which only works in TYPO3 Frontend rendering now via the common TypoScript
settings.

## Impact {#impact}

A custom handler for concatenation and compression of JavaScript and CSS files has
no effect anymore when registered in a third-party extension.

This could previously be configured via

-   `$GLOBALS['TYPO3_CONF_VARS']['BE']['jsConcatenateHandler']`
-   `$GLOBALS['TYPO3_CONF_VARS']['BE']['jsCompressHandler']`
-   `$GLOBALS['TYPO3_CONF_VARS']['BE']['cssConcatenateHandler']`
-   `$GLOBALS['TYPO3_CONF_VARS']['BE']['cssCompressHandler']`

Additionally, it was previously possible to configure a custom root path
in ResourceCompressor via `setRootPath($rootPath)`, which has been removed
as well.

## Affected installations {#affected-installations}

TYPO3 installations with custom JavaScript and CSS handlers for TYPO3 Backend routines
via custom extensions which is highly unlikely.

## Migration {#migration}

None, as component-based CSS files and module-based JavaScript files are loaded already
anyway, and the performance impact of loading multiple files is rather low due
to optimized `.htaccess` configurations already, and through bundling all CSS for
Core in optimized files as well.
