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