Skip to content

Commit

Permalink
Merge pull request #6 from pluswerk/bugfix/fix-content-length-header-bug
Browse files Browse the repository at this point in the history
🐛 fix Content-Length header bug
  • Loading branch information
Kanti authored Jun 14, 2022
2 parents 3e73cf8 + 8344a63 commit 7ca71a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Configuration/RequestMiddlewares.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@
'frontend' => [
'minify/service/htmlminifier' => [
'target' => \Pluswerk\PlusMinify\Middleware\MinifyMiddleware::class,
// in the request direction it is after these middlewares:
// but in response direction it is before these middlewares:
'after' => [
'typo3/cms-frontend/output-compression',
'typo3/cms-frontend/content-length-headers',
],
// in the request direction it is before these middlewares:
// but in response direction it is after these middlewares:
'before' => [
'typo3/cms-adminpanel/renderer',
'typo3/cms-frontend/output-compression'
]
]
]
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'uploadfolder' => '0',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '1.1.0',
'version' => '1.1.1',
'constraints' =>[
'depends' => [
'typo3' => '10.99.99',
Expand Down

0 comments on commit 7ca71a6

Please sign in to comment.