disable css/js pipelining in the admin #28

This commit is contained in:
Andy Miller
2015-08-07 08:49:53 -06:00
parent 9d9d6a2f23
commit 5f3903229e

View File

@@ -128,6 +128,10 @@ class AdminPlugin extends Plugin
// Set original route for the home page.
$home = '/' . trim($this->config->get('system.home.alias'), '/');
// Disable Asset pipelining
$this->config->set('system.assets.css_pipeline', false);
$this->config->set('system.assets.js_pipeline', false);
// set the default if not set before
$this->session->expert = $this->session->expert ?: false;