unplugin-icons-helper
v0.1.2
Published
unplugin-icons customCollections helper
Downloads
6
Maintainers
Readme
unplugin-icons-helper
Installation
npm i -D unplugin-icons-helper
// vite.config.ts
import IconsHelper from 'unplugin-icons-helper/vite'
export default defineConfig({
plugins: [IconsHelper()]
})
// rollup.config.js
import IconsHelper from 'unplugin-icons-helper/rollup'
export default {
plugins: [IconsHelper()]
}
// rolldown.config.js
import IconsHelper from 'unplugin-icons-helper/rolldown'
export default {
plugins: [IconsHelper()]
}
// esbuild.config.js
import { build } from 'esbuild'
build({
plugins: [require('unplugin-icons-helper/esbuild')()]
})
// webpack.config.js
module.exports = {
/* ... */
plugins: [require('unplugin-icons-helper/webpack')()]
}