mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-14 18:46:10 +01:00
16 lines
380 B
PHP
16 lines
380 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
'frontend' => [
|
||
|
'tracking-pageview' => [
|
||
|
'target' => \DanielSiepmann\Tracking\Middleware\Pageview::class,
|
||
|
'before' => [
|
||
|
'typo3/cms-frontend/content-length-headers',
|
||
|
],
|
||
|
'after' => [
|
||
|
'typo3/cms-frontend/shortcut-and-mountpoint-redirect',
|
||
|
],
|
||
|
],
|
||
|
],
|
||
|
];
|