1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/eleventy_ynh.git synced 2024-09-03 18:26:32 +02:00
eleventy_ynh/conf/.eleventy.js

10 lines
260 B
JavaScript
Raw Normal View History

2023-05-12 18:49:28 +02:00
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("./src/style.css");
return {
dir: {
input: "src",
output: "public",
},
};
};