We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34a026 commit 7e07dd4Copy full SHA for 7e07dd4
.eleventy.js
@@ -4,10 +4,10 @@
4
* @returns {import("@11ty/eleventy").EleventyReturnValue}
5
*/
6
module.exports = (eleventyConfig) => {
7
- eleventyConfig.addPassthroughCopy("styles.css");
8
- eleventyConfig.addPassthroughCopy("*.png");
9
- eleventyConfig.addPassthroughCopy(".well-known");
10
- eleventyConfig.addPassthroughCopy("CNAME");
+ eleventyConfig.addPassthroughCopy({ "../styles.css": "styles.css" });
+ eleventyConfig.addPassthroughCopy({ "../*.png": "." });
+ eleventyConfig.addPassthroughCopy({ "../.well-known": ".well-known" });
+ eleventyConfig.addPassthroughCopy({ "../CNAME": "CNAME" });
11
12
eleventyConfig.setServerOptions({
13
port: 3000
0 commit comments