forked from rknightuk/monzo-pot-image-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eleventy.js
21 lines (20 loc) · 844 Bytes
/
.eleventy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy("src/assets");
eleventyConfig.addPassthroughCopy("src/favicon.ico");
eleventyConfig.addPassthroughCopy("src/android-chrome-192x192.png");
eleventyConfig.addPassthroughCopy("src/android-chrome-512x512.png");
eleventyConfig.addPassthroughCopy("src/apple-touch-icon.png");
eleventyConfig.addPassthroughCopy("src/browserconfig.xml");
eleventyConfig.addPassthroughCopy("src/favicon-16x16.png");
eleventyConfig.addPassthroughCopy("src/favicon-32x32.png");
eleventyConfig.addPassthroughCopy("src/mstile-150x150.png");
eleventyConfig.addPassthroughCopy("src/safari-pinned-tab.svg");
eleventyConfig.addPassthroughCopy("src/site.webmanifest");
return {
passthroughFileCopy: true,
dir: {
input: "src",
output: "public"
}
};
};