mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-15 11:50:50 +00:00
9 lines
372 B
JavaScript
9 lines
372 B
JavaScript
// Passthrough File Copy
|
|
export default function(eleventyConfig) {
|
|
eleventyConfig.addPassthroughCopy("./src/assets/");
|
|
eleventyConfig.addWatchTarget("./src/assets/");
|
|
eleventyConfig.addWatchTarget("./src/_bundle/");
|
|
eleventyConfig.addPassthroughCopy({
|
|
"node_modules/@zachleat/details-utils/details-utils.js": "assets/js/details-utils.js",
|
|
});
|
|
} |