mirror of
https://github.com/YunoHost-Apps/eleventy_ynh.git
synced 2024-09-03 18:26:32 +02:00
9 lines
297 B
JavaScript
9 lines
297 B
JavaScript
module.exports = function (eleventyConfig) {
|
|
eleventyConfig.addPassthroughCopy("__DATA_DIR__/src/style.css");
|
|
return {
|
|
dir: {
|
|
input: "__DATA_DIR__/src",
|
|
output: "__DATA_DIR__/public",
|
|
},
|
|
};
|
|
};
|