---
title: "Feature: #101472 - Allow static routes to assets"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-101472-1721137289"
source: "Changelog/13.3/Feature-101472-AllowStaticRoutesToAssets.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #101472 - Allow static routes to assets

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

## Description

It is now possible to configure static routes with the type `asset` to link to
resources which are typically located in the directory
`EXT:my_extension/Resources/Public/`.

**config/sites/my-site/config.yaml**

```yaml
routes:
  -
    route: example.svg
    type: asset
    asset: 'EXT:backend/Resources/Public/Icons/Extension.svg'
```

Note that the asset URL can be configured on a per-site basis.
This allows to deliver site-dependent custom favicon or manifest
assets, for example.

## Impact

Static routes to files shipped with extensions can now be configured in the site configuration.
