homepage/.eleventy.js
Louis Guidez reind33r 554ca60390
All checks were successful
/ build (push) Successful in 20s
/ deploy (push) Successful in 15s
now with self-hosted fonts
2024-02-08 23:07:59 +01:00

21 lines
705 B
JavaScript

module.exports = function(eleventyConfig) {
// Copying static assets
eleventyConfig.addPassthroughCopy("src/style.css");
eleventyConfig.addPassthroughCopy("src/photo.png");
eleventyConfig.addPassthroughCopy("src/advent_pro_500.woff2");
eleventyConfig.addPassthroughCopy("src/advent_pro_600.woff2");
eleventyConfig.addPassthroughCopy("src/updock_400.woff2");
// Configuring permalinks to be ~.html instead of ~/
eleventyConfig.addGlobalData("permalink", () => {
return (data) => `${data.page.filePathStem}.${data.page.outputFileExtension}`;
});
// Options
return {
dir: {
input: "src",
output: "dist"
}
}
};