plugin installs
This commit is contained in:
parent
ad12d17f99
commit
1dd26b9a4f
3 changed files with 1401 additions and 26 deletions
|
@ -1,5 +1,7 @@
|
|||
const syntaxHighlight = require('@11ty/eleventy-plugin-syntaxhighlight')
|
||||
const heroIcons = require('eleventy-plugin-heroicons')
|
||||
const pluginUnfurl = require('eleventy-plugin-unfurl')
|
||||
const pluginCleanUrls = require('@inframanufaktur/eleventy-plugin-clean-urls')
|
||||
const markdownIt = require('markdown-it')
|
||||
const markdownItAnchor = require('markdown-it-anchor')
|
||||
const markdownItFootnote = require('markdown-it-footnote')
|
||||
|
@ -11,6 +13,8 @@ module.exports = function (eleventyConfig) {
|
|||
// plugins
|
||||
eleventyConfig.addPlugin(syntaxHighlight)
|
||||
eleventyConfig.addPlugin(heroIcons)
|
||||
eleventyConfig.addPlugin(pluginUnfurl)
|
||||
eleventyConfig.addPlugin(pluginCleanUrls)
|
||||
|
||||
// filters
|
||||
Object.keys(filters).forEach((filterName) => {
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "eslint . --fix",
|
||||
"build": "npx @11ty/eleventy & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css"
|
||||
"build": "npx @11ty/eleventy & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css",
|
||||
"postbuild": "webmention _site/feed.xml --limit 1 --send"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
|
@ -31,8 +32,11 @@
|
|||
"dependencies": {
|
||||
"@11ty/eleventy-fetch": "^3.0.0",
|
||||
"@11ty/eleventy-img": "^3.0.0",
|
||||
"@inframanufaktur/eleventy-plugin-clean-urls": "^1.0.2",
|
||||
"@remy/webmention": "^1.4.5",
|
||||
"@tailwindcss/typography": "^0.5.1",
|
||||
"autoprefixer": "^10.4.2",
|
||||
"eleventy-plugin-unfurl": "^1.0.0",
|
||||
"eleventy-rss-helper": "^1.2.1",
|
||||
"markdown-it": "^13.0.1",
|
||||
"markdown-it-anchor": "^8.4.1",
|
||||
|
|
Reference in a new issue