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
2023-05-12 18:49:28 +02:00

9 lines
260 B
JavaScript

module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("./src/style.css");
return {
dir: {
input: "src",
output: "public",
},
};
};