Skip to content

Commit

Permalink
Adding HTML minification
Browse files Browse the repository at this point in the history
  • Loading branch information
S1SYPHOS committed Nov 2, 2020
1 parent 6b83464 commit a3396ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This boilerplate provides a solid starting point that you can build upon:
Workflow:
- Sass / node-sass / libsass
- Webpack
- CSS / JS minification
- HTML / CSS / JS minification
- Image optimization
- SVG icon sprites
- Favicon generation
Expand All @@ -37,6 +37,7 @@ Workflow:
In order to keep everything neat, each task resides in [its own file](https://gulpjs.com/docs/en/getting-started/javascript-and-gulpfiles#splitting-a-gulpfile) under `tasks/`.

Pre-installed Kirby plugins:
- [Minify HTML](https://github.com/afbora/kirby-minify-html) by @afbora
- [Fingerprint](https://github.com/bnomei/kirby3-fingerprint) by @bnomei

## Getting started
Expand Down Expand Up @@ -136,7 +137,6 @@ After generating favicons, insert this in your `<head>`:
<!-- Favicons -->
<link rel="shortcut icon" href="<?= url('favicon.ico') ?>">
<?php snippet('favicons') ?>
```
### Self-hosting fonts
Expand Down
3 changes: 3 additions & 0 deletions site/config/config.localhost.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@

# Activating debug mode
'debug' => true,

# Disabling HTML minification
'afbora.kirby-minify-html.enabled' => false,
];

0 comments on commit a3396ba

Please sign in to comment.