blog/lib/tasks/svg.ts

5 lines
193 B
TypeScript
Raw Normal View History

import { src, dest } from "gulp";
// SVG `use` has no way of allowing cross-origin, so we need to keep them with the HTML files.
export const svg = () => src("src/*.svg").pipe(dest("dist/"));