Initial theme setup + index/technical pages
This commit is contained in:
14
eleventy.config.js
Normal file
14
eleventy.config.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user