mirror of
https://github.com/skoelle/moonweb-site.git
synced 2026-09-18 01:10:25 +00:00
21 lines
710 B
JavaScript
21 lines
710 B
JavaScript
module.exports = function (eleventyConfig) {
|
|
eleventyConfig.addGlobalData("site", { url: "https://stefankoelle.de" });
|
|
eleventyConfig.addFilter("date", (d) => d.toISOString());
|
|
eleventyConfig.addPassthroughCopy({ "stefankoelle/assets": "assets" });
|
|
eleventyConfig.addPassthroughCopy({ "stefankoelle/ledmatrix/assets": "ledmatrix/assets" });
|
|
eleventyConfig.addPassthroughCopy({ "stefankoelle/robots.txt": "robots.txt" });
|
|
eleventyConfig.addPassthroughCopy({ "stefankoelle/pdf/cv.pdf": "pdf/cv.pdf" });
|
|
|
|
return {
|
|
dir: {
|
|
input: "stefankoelle",
|
|
includes: "_includes",
|
|
output: "dist/stefankoelle"
|
|
},
|
|
serverOptions: {
|
|
host: "0.0.0.0",
|
|
port: 8086
|
|
}
|
|
};
|
|
};
|