15 lines
416 B
JavaScript
15 lines
416 B
JavaScript
module.exports = function(eleventyConfig) {
|
|
eleventyConfig.addPassthroughCopy("src/css"); // Copy css to site folder
|
|
eleventyConfig.setServerOptions({
|
|
host: "0.0.0.0",
|
|
port: 80
|
|
});
|
|
return {
|
|
dir: {
|
|
input: "src", // Where your markdown files live
|
|
output: "_site", // Where the built HTML goes
|
|
layouts: "_layouts" // Where your HTML templates live
|
|
}
|
|
};
|
|
};
|