Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TASK] Reference BeforeLoadedUserTsConfigEvent in "Setting user TSconfig" chapter #386

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Documentation/UsingSetting/UserTSconfig.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ Setting default user TSconfig
=============================

.. versionadded:: 13.0
Starting with TYPO3 v12.0 page TSconfig in a file named
Starting with TYPO3 v13.0 user TSconfig in a file named
:file:`Configuration/user.tsconfig` in an extension is automatically loaded
during build time.

User TSconfig is designed to be individual for users or groups of
users. However, good defaults can be defined and overridden by group or
user-specific TSconfig.

Default page TSconfig should be stored within an extension, usually a
Default user TSconfig should be stored within an extension, usually a
sitepackage extension. The content of the file
:file:`Configuration/user.tsconfig` within an extension is automatically loaded
during build time.
Expand All @@ -78,6 +78,8 @@ this file:

@import 'EXT:my_sitepackage/Configuration/TsConfig/User/default.tsconfig'

The PSR-14 event :ref:`t3coreapi:BeforeLoadedUserTsConfigEvent` is available to
add global static user TSconfig before anything else is loaded.

User TSconfig, compatible with TYPO3 v12 and v13
------------------------------------------------
Expand Down
Loading