12345678910111213141516171819202122 |
- // src/index.ts
- import createRollupPlugin from "rollup-plugin-purge-icons";
- function createPlugin(options = {}) {
- const parsedOptions = {
- content: [
- "**/*.html",
- "**/*.pug",
- "**/*.vue",
- "**/*.js",
- "**/*.ts"
- ],
- iconifyImportName: "@iconify/iconify",
- ...options
- };
- return {
- enforce: "pre",
- ...createRollupPlugin(parsedOptions)
- };
- }
- export {
- createPlugin as default
- };
|