---
title: "Assets (CSS, JavaScript, media)"
manual: "TYPO3 Explained"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3coreapi:assets@main"
source: "ApiOverview/Assets/Index.rst"
rendered: "2026-09-22T15:26:06+00:00"
---

# Assets (CSS, JavaScript, media) {#assets}

****Table of Contents****

-   [Asset collector](https://docs.typo3.org/permalink/t3coreapi:asset-collector-1@main)
-   [Using the page renderer to add assets](https://docs.typo3.org/permalink/t3coreapi:using-the-page-renderer-to-add-assets@main)

The TYPO3 component responsible for rendering the HTML and adding assets to a
TYPO3 frontend or backend page is called `\TYPO3\CMS\Core\Page\PageRenderer`.

The `PageRenderer` collects all assets to
be rendered and finally generates the necessary tags.

<!-- TODO: no Markdown rendering for "versionchanged" -->

TYPO3 no longer supports frontend asset concatenation or
pre-compression in the Core. The PageRenderer therefore does not
concatenate or pre-compress CSS and JavaScript files in TYPO3 v14.

There are multiple ways to add assets to the `PageRenderer` in TYPO3.
For configuration options via TypoScript (usually used for the main theme files),
see the [TypoScript Reference](https://docs.typo3.org/m/typo3/reference-typoscript/main/en-us/TopLevelObjects/Page/Index.html#setup-page-includecss-array). In
extensions, both directly using the `PageRenderer` as well as using the
more convenient `AssetCollector` is possible.

## Asset collector {#asset-collector}

With the `\TYPO3\CMS\Core\Page\AssetCollector` class, CSS and JavaScript
code (inline or external) can be added multiple times, but rendered only once in
the output. The class may be used directly in PHP code or the assets can be
added via the `<f:asset.css>` and `<f:asset.script>` ViewHelpers.

The `priority` flag (default: `false`) controls where the asset is
inserted:

-   JavaScript will be output inside `<head>` if `$priority == true`,
    or at the bottom of the `<body>` tag if `$priority == false`.
-   CSS will always be output inside `<head>`, yet grouped by
    `$priority`.

The asset collector helps to work with content elements as components,
effectively reducing the CSS to be loaded. It takes advantage of HTTP/2, which
removes the necessity to concatenate all files in one file.

The asset collector class is implemented as a singleton
(`\TYPO3\CMS\Core\SingletonInterface`). It replaces various other existing
options in TypoScript and [methods in PHP](https://docs.typo3.org/permalink/t3coreapi:assets-other-methods@main) for
inserting JavaScript and CSS code.

The asset collector also collects information about images on a page,
which can be used in cached and non-cached components.

The `AssetCollector` option `external` can be used for
asset files using `$assetCollector->addStyleSheet()`
or `$assetCollector->addJavaScript()`. If set all processing of the asset
URI (like the addition of the cache busting parameter) is skipped and the input
path will be used as-is in the resulting HTML tag.

### The asset collector API {#asset-collector-api}

-   **class AssetCollector**

    -   *Fully qualified name:* `\TYPO3\CMS\Core\Page\AssetCollector`

    The Asset Collector is responsible for keeping track of
    \- everything within \<script> tags: javascript files and inline javascript code
    \- inline CSS and CSS files

    The goal of the asset collector is to:
    \- utilize a single "runtime-based" store for adding assets of certain kinds that are added to the output
    \- allow to deal with assets from non-cacheable plugins and cacheable content in the Frontend
    \- reduce the "power" and flexibility (I'd say it's a burden) of the "god class" PageRenderer.
    \- reduce the burden of storing everything in PageRenderer

    As a side effect this allows to:
    \- Add a single CSS snippet or CSS file per content block, but assure that the CSS is only added once to the output.

    Note on the implementation:
    \- We use a Singleton to make use of the AssetCollector throughout Frontend process (similar to PageRenderer).
    \- Although this is not optimal, I don't see any other way to do so in the current code.

    -   **addJavaScript(string $identifier, string $source, array $attributes = \[\], array $options = \[\])**

        -   *param $identifier:* the identifier
        -   *param $source:* URI to JavaScript file (allows EXT: syntax)
        -   *param $attributes:* additional HTML \<script> tag attributes, default: \[\]
        -   *param $options:* \['priority' => true\] means rendering before other tags, default: \[\]

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **addJavaScriptModule(string $identifier)**

        -   *param $identifier:* Bare module identifier like @my/package/Filename.js

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **addInlineJavaScript(string $identifier, string $source, array $attributes = \[\], array $options = \[\])**

        -   *param $identifier:* the identifier
        -   *param $source:* JavaScript code
        -   *param $attributes:* additional HTML \<script> tag attributes, default: \[\]
        -   *param $options:* \['priority' => true\] means rendering before other tags, default: \[\]

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **addStyleSheet(string $identifier, string $source, array $attributes = \[\], array $options = \[\])**

        -   *param $identifier:* the identifier
        -   *param $source:* URI to stylesheet file (allows EXT: syntax)
        -   *param $attributes:* additional HTML \<link> tag attributes, default: \[\]
        -   *param $options:* \['priority' => true\] means rendering before other tags, default: \[\]

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **addInlineStyleSheet(string $identifier, string $source, array $attributes = \[\], array $options = \[\])**

        -   *param $identifier:* the identifier
        -   *param $source:* stylesheet code
        -   *param $attributes:* additional HTML \<link> tag attributes, default: \[\]
        -   *param $options:* \['priority' => true\] means rendering before other tags, default: \[\]

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **addMedia(string $fileName, array $additionalInformation)**

        -   *param $fileName:* the fileName
        -   *param $additionalInformation:* One dimensional hash map (array with non-numerical keys) with scalar values

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **removeJavaScript(string $identifier)**

        -   *param $identifier:* the identifier

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **removeInlineJavaScript(string $identifier)**

        -   *param $identifier:* the identifier

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **removeStyleSheet(string $identifier)**

        -   *param $identifier:* the identifier

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **removeInlineStyleSheet(string $identifier)**

        -   *param $identifier:* the identifier

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **removeMedia(string $identifier)**

        -   *param $identifier:* the identifier

        *Returns:* `TYPO3CMSCorePageAssetCollector`

    -   **getMedia()**

        *Returns:* `array`

    -   **getJavaScripts(?bool $priority = NULL)**

        -   *param $priority:* the priority, default: NULL

        *Returns:* `array`

    -   **getInlineJavaScripts(?bool $priority = NULL)**

        -   *param $priority:* the priority, default: NULL

        *Returns:* `array`

    -   **getJavaScriptModules()**

        *Returns:* `array`

    -   **getStyleSheets(?bool $priority = NULL)**

        -   *param $priority:* the priority, default: NULL

        *Returns:* `array`

    -   **getInlineStyleSheets(?bool $priority = NULL)**

        -   *param $priority:* the priority, default: NULL

        *Returns:* `array`

    -   **hasJavaScript(string $identifier)**

        -   *param $identifier:* the identifier

        *Returns:* `bool`

    -   **hasInlineJavaScript(string $identifier)**

        -   *param $identifier:* the identifier

        *Returns:* `bool`

    -   **hasStyleSheet(string $identifier)**

        -   *param $identifier:* the identifier

        *Returns:* `bool`

    -   **hasInlineStyleSheet(string $identifier)**

        -   *param $identifier:* the identifier

        *Returns:* `bool`

    -   **hasMedia(string $fileName)**

        -   *param $fileName:* the fileName

        *Returns:* `bool`

> [!NOTE]
> If the same asset is registered multiple times using different attributes or
> options, both sets are merged. If the same attributes or options are given
> with different values, the most recently registered ones overwrite the
> existing ones. The `has` methods can be used to check if an asset
> exists before generating it again, hence avoiding redundancy.

### f:assets.\* ViewHelpers {#assets-viewhelper}

There are two ViewHelpers which use the `AssetCollector` API - [f:asset.css](https://docs.typo3.org/other/typo3/view-helper-reference/main/en-us/Global/Asset/Css.html#typo3-fluid-asset-css) and the
[f:asset.script](https://docs.typo3.org/other/typo3/view-helper-reference/main/en-us/Global/Asset/Script.html#typo3-fluid-asset-script).

### Rendering order of page assets {#assets-rendering-order}

Currently, CSS and JavaScript registered with the asset collector will be
rendered after their page renderer counterparts. The order is:

-   `<head>`
-   `page.includeJSLibs.forceOnTop`
-   `page.includeJSLibs`
-   `page.includeJS.forceOnTop`
-   `page.includeJS`
-   `AssetCollector::addJavaScript()` with 'priority'
-   `page.jsInline`
-   `AssetCollector::addInlineJavaScript()` with 'priority'
-   `</head>`
-   `page.includeJSFooterlibs.forceOnTop`
-   `page.includeJSFooterlibs`
-   `page.includeJSFooter.forceOnTop`
-   `page.includeJSFooter`
-   `AssetCollector::addJavaScript()`
-   `page.jsFooterInline`
-   `AssetCollector::addInlineJavaScript()`

> [!NOTE]
> JavaScript registered with the asset collector is not affected by
> [config.moveJsFromHeaderToFooter](https://docs.typo3.org/m/typo3/reference-typoscript/main/en-us/TopLevelObjects/Config.html#setup-config-movejsfromheadertofooter).

### Examples {#assets-examples}

The `AssetCollector` can be injected in the constructor of a class via
[dependency injection](https://docs.typo3.org/permalink/t3coreapi:dependencyinjection@main) and then used in methods:

**EXT:my_extension/Classes/MyClass.php**

```php
<?php

declare(strict_types=1);

namespace MyVendor\MyExtension\MyClass;

use TYPO3\CMS\Core\Page\AssetCollector;

final class MyClass
{
  public function __construct(
    private readonly AssetCollector $assetCollector,
  ) {}

  public function doSomething()
  {
    // $this->assetCollector can now be used
    // see examples below
  }
}

```

Add a JavaScript file to the collector with script attribute
`data-foo="bar"`:

**EXT:my_extension/Classes/MyClass.php**

```php
$this->assetCollector->addJavaScript(
    'my_ext_foo',
    'EXT:my_extension/Resources/Public/JavaScript/foo.js',
    ['data-foo' => 'bar']
);
```

Add a JavaScript file to the collector with script attribute
`data-foo="bar"` and a priority which means rendering before other script
tags:

**EXT:my_extension/Classes/MyClass.php**

```php
$this->assetCollector->addJavaScript(
    'my_ext_foo',
    'EXT:my_extension/Resources/Public/JavaScript/foo.js',
    ['data-foo' => 'bar'],
    ['priority' => true]
);
```

Add a JavaScript file to the collector with `type="module"` (by default,
no `type=` is output for JavaScript):

**EXT:my_extension/Classes/MyClass.php**

```php
$this->assetCollector->addJavaScript(
    'my_ext_foo',
    'EXT:my_extension/Resources/Public/JavaScript/foo.js',
    ['type' => 'module']
);
```

Check if a JavaScript file with the given identifier exists:

**EXT:my_extension/Classes/MyClass.php**

```php
if ($this->assetCollector->hasJavaScript($identifier)) {
    // result: true - JavaScript with identifier $identifier exists
} else {
    // result: false - JavaScript with identifier $identifier does not exist
}
```

The collector accepts a file of an extension with the `EXT:` syntax, as
above, and a URL. A URL is rendered as is, without a cache busting
parameter. Relative URLs need the prefix `URI:`:

**EXT:my_extension/Classes/MyClass.php**

```php
$assetCollector->addStyleSheet(
    'myCssFile',
    'URI:/styles/main.css',
);
```

Resulting in the following HTML output:

```html
<link rel="stylesheet" href="/styles/main.css" />
```

<!-- TODO: no Markdown rendering for "versionchanged" -->

The external option has been removed. Every other resource is
rendered with a cache busting parameter. See
Breaking: #107927 - Remove "external" property / option from TypoScript and AssetRenderer.

### Events that allow additional adjusting of assets {#assets-events}

There are two events available that allow additional adjusting of assets:

-   [BeforeJavaScriptsRenderingEvent](https://docs.typo3.org/permalink/t3coreapi:beforejavascriptsrenderingevent@main)
-   [BeforeStylesheetsRenderingEvent](https://docs.typo3.org/permalink/t3coreapi:beforestylesheetsrenderingevent@main)

## Using the page renderer to add assets {#assets-page-renderer}

An instance of the `PageRenderer`
class can be injected via [dependency injection](https://docs.typo3.org/permalink/t3coreapi:dependencyinjection@main):

**EXT:my_extension/Classes/MyClass.php**

```php
<?php

declare(strict_types=1);

namespace MyVendor\MyExtension\MyClass;

use TYPO3\CMS\Core\Page\PageRenderer;

final class MyClass
{
  public function __construct(
    private readonly PageRenderer $pageRenderer,
  ) {}

  public function doSomething()
  {
    // $this->pageRenderer can now be used
    // see examples below
  }
}

```

The following methods can then be used:

-   `$this->pageRenderer->addHeaderData($javaScriptCode)`
-   `$this->pageRenderer->addCssFile($file)`
-   `$this->pageRenderer->addCssInlineBlock($name, $cssCode)`
-   `$this->pageRenderer->addCssLibrary($file)`
-   `$this->pageRenderer->addJsFile($file)`
-   `$this->pageRenderer->addJsFooterFile($file)`
-   `$this->pageRenderer->addJsFooterLibrary($name, $file)`
-   `$this->pageRenderer->addJsFooterInlineCode($name, $javaScriptCode)`
-   `$this->pageRenderer->addJsInlineCode($name, $javaScriptCode)`
-   `$this->pageRenderer->addJsLibrary($name, $file)`
