allow adding patches
This commit is contained in:
parent
7cf92ba05f
commit
b86dd4e059
2 changed files with 3 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,3 +2,5 @@ _site/
|
||||||
node_modules/
|
node_modules/
|
||||||
package-lock.json
|
package-lock.json
|
||||||
.cache
|
.cache
|
||||||
|
patches
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,7 @@ const pluginDrafts = require("./eleventy.config.drafts.js");
|
||||||
module.exports = function(eleventyConfig) {
|
module.exports = function(eleventyConfig) {
|
||||||
eleventyConfig.addPassthroughCopy("content/**/*.png");
|
eleventyConfig.addPassthroughCopy("content/**/*.png");
|
||||||
eleventyConfig.addPassthroughCopy('content/**/*.css');
|
eleventyConfig.addPassthroughCopy('content/**/*.css');
|
||||||
|
eleventyConfig.addPassthroughCopy({ "patches": "/" });
|
||||||
|
|
||||||
// Run Eleventy when these files change:
|
// Run Eleventy when these files change:
|
||||||
// https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets
|
// https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets
|
||||||
|
|
Loading…
Reference in a new issue