We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When adding a new image to a project Eleventy dev server has to be restarted for the new image to be served.
.addPassthroughCopy("src/img/**/*.{png,gif,jpg,jpeg,pdf,svg,webp}");
eleventy.js
--incremental
Reproduce:
<img>
The text was updated successfully, but these errors were encountered:
Successfully reproduced when using eleventyConfig.setServerPassthroughCopyBehavior("passthrough");
eleventyConfig.setServerPassthroughCopyBehavior("passthrough");
Works as expected with default behavior (eleventyConfig.setServerPassthroughCopyBehavior("copy");)
eleventyConfig.setServerPassthroughCopyBehavior("copy");
Sorry, something went wrong.
/
/index.html
No branches or pull requests
When adding a new image to a project Eleventy dev server has to be restarted for the new image to be served.
.addPassthroughCopy("src/img/**/*.{png,gif,jpg,jpeg,pdf,svg,webp}");
ineleventy.js
--incremental
and it didn't help.Reproduce:
<img>
element referencing one of the images in your project<img>
in web browser<img>
element to your html template referencing your newly added image fileThe text was updated successfully, but these errors were encountered: