blog/lib/tasks/svg.ts
Thibault “Adædra” Hamel f85d4d562e Explode gulpfile
* Import TypeScript
* Explode gulpfile into smaller files
* Actual CSS and Font (incomplete) file cache buster
2024-06-21 21:17:32 +02:00

5 lines
193 B
TypeScript

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/"));