15 lines
732 B
JavaScript
15 lines
732 B
JavaScript
|
|
import pugPlugin from "@11ty/eleventy-plugin-pug";
|
||
|
|
import { eleventyImageTransformPlugin } from "@11ty/eleventy-img";
|
||
|
|
|
||
|
|
export default function (eleventyConfig) {
|
||
|
|
eleventyConfig.setInputDirectory("src")
|
||
|
|
eleventyConfig.addPlugin(pugPlugin);
|
||
|
|
eleventyConfig.addPlugin(eleventyImageTransformPlugin);
|
||
|
|
eleventyConfig.addPassthroughCopy("assets/img/markmark-light.svg")
|
||
|
|
eleventyConfig.addPassthroughCopy("assets/font/obsidian/Obsidian-Roman.otf")
|
||
|
|
eleventyConfig.addPassthroughCopy("assets/font/reckless/WEB/Reckless-Bold.woff2")
|
||
|
|
eleventyConfig.addPassthroughCopy("assets/font/reckless/WEB/Reckless-Regular.woff2")
|
||
|
|
eleventyConfig.addPassthroughCopy("assets/font/reckless/WEB/Reckless-RegularItalic.woff2")
|
||
|
|
}
|
||
|
|
|