-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
678f311
commit 7f54a7f
Showing
1 changed file
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ import transformImages from "lume/plugins/transform_images.ts"; | |
import picture from "lume/plugins/picture.ts"; | ||
import metas from "lume/plugins/metas.ts"; | ||
import favicon from "lume/plugins/favicon.ts"; | ||
import basePath from "lume/plugins/base_path.ts"; | ||
import * as si from "npm:[email protected]"; | ||
import type { SimpleIcon } from "npm:[email protected]"; | ||
import Color from "https://colorjs.io/dist/color.js"; | ||
|
@@ -16,6 +17,7 @@ export default function () { | |
site.use(postcss()) | ||
.use(metas()) | ||
.use(favicon()) | ||
.use(basePath()) | ||
.use(picture()) | ||
.use(transformImages()); | ||
|
||
|