Skip to content

Commit

Permalink
fix: update docs site renderer config to not touch CSS or JS included…
Browse files Browse the repository at this point in the history
… on the page
  • Loading branch information
sghoweri committed Sep 19, 2018
1 parent 3b665d8 commit f7cc19a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/bolt-site/renderTwig.php
Expand Up @@ -2,7 +2,10 @@
require_once 'vendor/autoload.php';
use Wa72\HtmlPrettymin\PrettyMin;

$pm = new PrettyMin();
$pm = new PrettyMin([
'minify_js' => false,
'minify_css' => false,
]);

use Webmozart\PathUtil\Path;
use Symfony\Component\Finder\Finder;
Expand Down

0 comments on commit f7cc19a

Please sign in to comment.