95dce6b534
This reverts commit 113234816ec19bc585116c55ceedca86cd865748, reversing changes made to 51ff2484703c5a0d13f47df3fd381a63ce5c98b8.
30 lines
475 B
PHP
30 lines
475 B
PHP
<?php
|
|
|
|
return [
|
|
'debug' => true,
|
|
'panel' => [
|
|
'vue' => [
|
|
'compiler' => false
|
|
]
|
|
],
|
|
|
|
// Bessere Scanner-Kompatibilität
|
|
'cache' => [
|
|
'pages' => [
|
|
'active' => true
|
|
]
|
|
],
|
|
|
|
// Headers für bessere Scanner-Kompatibilität
|
|
'headers' => [
|
|
'X-Frame-Options' => 'SAMEORIGIN',
|
|
'X-XSS-Protection' => '1; mode=block'
|
|
],
|
|
|
|
// Robots-freundliche Einstellungen
|
|
'smartypants' => true,
|
|
'markdown' => [
|
|
'extra' => true
|
|
]
|
|
];
|