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
297 B
JavaScript
Raw Normal View History

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