homepage/.eleventy.js

19 lines
508 B
JavaScript
Raw Permalink Normal View History

module.exports = function(eleventyConfig) {
// Copying static assets
eleventyConfig.addPassthroughCopy("src/style.css");
eleventyConfig.addPassthroughCopy("src/photo.png");
// 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"
}
}
};