-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eleventy.js
58 lines (46 loc) · 1.54 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
49
50
51
52
53
54
55
56
57
58
module.exports = function(eleventyConfig) {
// Výchozí výstupní složka je: _site
// Zkopírovat images/ do _site/images
eleventyConfig.addPassthroughCopy("images");
// Zkopírovat css/ to _site/css/
eleventyConfig.addPassthroughCopy("css");
eleventyConfig.addPassthroughCopy("icons");
eleventyConfig.addPassthroughCopy("flavicon")
eleventyConfig.addPassthroughCopy("scripts")
// Přidání passthrough pro soubory .txt
eleventyConfig.addPassthroughCopy("*.txt");
// Přidání passthrough pro soubory .xml
eleventyConfig.addPassthroughCopy("*.xml");
// Přidání passthrough pro soubory .js
eleventyConfig.addPassthroughCopy("*.js");
// Přidání passthrough pro soubory .pdf
eleventyConfig.addPassthroughCopy("*.pdf");
eleventyConfig.setBrowserSyncConfig({
callbacks: {
ready: function (err, browserSync) {
const mime = browserSync.mime;
mime.define({
'text/javascript': ['js']
});
}
}
});
return async () => {
let output = await esbuild.build({
target: 'es2020',
entryPoints: [path],
minify: true,
bundle: true,
write: false,
});
return output.outputFiles[0].text;
}
return {
// možné formáty šablon
templateFormats: ["njk", "html", "md"],
// jako šablonovací jazyk zvolíme Nunjucks`
markdownTemplateEngine: "njk",
htmlTemplateEngine: "njk",
dataTemplateEngine: "njk",
}
};