7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
export default function (eleventyConfig) {
|
|
eleventyConfig.addPassthroughCopy("style.css");
|
|
|
|
eleventyConfig.addWatchTarget("style.css");
|
|
|
|
eleventyConfig.setServerPassthroughCopyBehavior("passthrough");
|
|
}
|