TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,43 @@
.. include:: /Includes.rst.txt
.. _feature-99510-1716815124:
================================================================
Feature: #99510 - Add file embedding option to asset ViewHelpers
================================================================
See :issue:`99510`
Description
===========
The ViewHelpers :ref:`<f:asset.css> <t3viewhelper:typo3-fluid-asset-css>`
and :ref:`<f:asset.script> <t3viewhelper:typo3-fluid-asset-script>` have
been extended with a new argument :fluid:`inline`. If this argument is set,
the referenced asset file is rendered inline.
Setting the argument will therefore load the file content of the defined
:fluid:`href` / :fluid:`src` as inline style or script. This is especially
useful for content elements which are used as first element on a page and
need some custom CSS to improve the Cumulative Layout Shift (CLS).
Impact
======
To add inline styles and scripts from a referenced file, the new :fluid:`inline`
argument can be set. For example, to add above-the-fold styles, the
:fluid:`priority` option can be set, which will put the file contents of
:file:`EXT:sitepackage/Resources/Public/Css/my-hero.css` as inline styles
to the :html:`<head>` section.
.. code-block:: html
<f:asset.css identifier="my-hero" href="EXT:sitepackage/Resources/Public/Css/my-hero.css" inline="1" priority="1"/>
To add JavaScript:
.. code-block:: html
<f:asset.script identifier="my-hero" src="EXT:sitepackage/Resources/Public/Js/my-hero.js" inline="1" priority="1"/>
.. index:: Fluid, Frontend, ext:fluid