This repository has been archived on 2023-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
personal-website-old/.eleventy.js

27 lines
629 B
JavaScript
Raw Normal View History

2020-11-26 15:42:01 +00:00
const pluginNavigation = require("@11ty/eleventy-navigation")
2021-05-20 20:02:50 +00:00
module.exports = function (eleventyConfig) {
2020-11-19 14:49:52 +00:00
2021-05-20 20:02:50 +00:00
eleventyConfig.addPlugin(pluginNavigation);
2020-11-26 15:42:01 +00:00
2021-05-20 20:02:50 +00:00
eleventyConfig.addPassthroughCopy('pages/css');
eleventyConfig.addPassthroughCopy('pages/content');
2020-11-19 14:49:52 +00:00
2021-05-20 20:02:50 +00:00
eleventyConfig.addPassthroughCopy({
"node_modules/chaffle/docs/chaffle.min.js": "javascript/chaffle.min.js",
"pages/favicon.ico": "favicon.ico"
});
2021-05-20 20:02:50 +00:00
eleventyConfig.addShortcode("year", () => {
let year = new Date().getFullYear();
return year.toString();
});
return {
dir: {
input: "pages"
},
pathPrefix: '/~fainsil/'
}
2020-11-19 15:24:32 +00:00
2020-11-19 14:49:52 +00:00
}