forked from vittala23/welchlab
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eleventy.js
48 lines (46 loc) · 1.76 KB
/
.eleventy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const eleventySass = require("eleventy-sass");
const postcss = require("postcss");
const cssnano = require("cssnano");
const faviconsPlugin = require("eleventy-plugin-gen-favicons");
const autoprefixer = require("autoprefixer");
const yml = require("js-yaml");
const posthtml = require("posthtml");
const htmlnano = require("htmlnano");
const { posthtml: automaticNoopener } = require('eleventy-plugin-automatic-noopener');
module.exports = function(eleventyConfig) {
{
eleventyConfig.addDataExtension("yml", contents => yml.load(contents));
eleventyConfig.addPassthroughCopy("images");
eleventyConfig.addPassthroughCopy("fonts");
eleventyConfig.addPassthroughCopy("downloads");
eleventyConfig.addPlugin(faviconsPlugin, {});
eleventyConfig.addPlugin(eleventySass, {
postcss: postcss(
[
autoprefixer,
cssnano({ preset: require('cssnano-preset-advanced') })]),
sass: {
loadPaths: ["node_modules/bootstrap-icons/font/","node_modules/bootstrap/scss"],
style: "compressed", }
});
eleventyConfig.setLiquidOptions({
dynamicPartials: false
});
eleventyConfig.addTransform('posthtml', function(HTMLString, outputPath) {
if(outputPath && outputPath.endsWith('html')) {
return posthtml([automaticNoopener(), htmlnano()]).process(HTMLString).then(result => result.html);
}
else {
return HTMLString
}
});
return {
dir: {
input: "./",
output: "./_site",
includes: "./_includes",
layouts: "./_layouts"
}
}
}
};