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