vite-plugin-find-image-duplicates
TypeScript icon, indicating that this package has built-in type declarations

0.0.10 • Public • Published

vite-plugin-find-image-duplicates

Find if there are duplicate images in your project when building it

NPM version NPM Downloads

English | 简体中文

Configuration

configuration item name must meaning type example
imagePath No The image path to be found, default src/assets/images Array<string> findImageDuplicates({ imagePath: ["src/assets/images", ...] })
imageType No The type of image you need to find, default'.jpg', '.jpeg', '.png', '.gif', '.bmp', '.svg', '.webp' Array<string> findImageDuplicates({ imageType: ['.jpg', '.jpeg', '.png', '.gif', '.bmp', '.svg', '.webp',...] })
exitOnDuplicate No Whether to exit the process after finding the duplicate picture, by default ture Exit the process Boolean findImageDuplicates({ exitOnDuplicate:false })

Install

npm install vite-plugin-find-image-duplicates -D
pnpm add vite-plugin-find-image-duplicates -D

Usage

  • vite.config.ts
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import findImageDuplicates from 'vite-plugin-find-image-duplicates'

export default defineConfig({
  plugins: [vue(), findImageDuplicates({ imagePath: ['src/assets/images/recur'], exitOnDuplicate: false })]
})

License

MIT © wChenonly-latest

Readme

Keywords

Package Sidebar

Install

npm i vite-plugin-find-image-duplicates

Weekly Downloads

6

Version

0.0.10

License

MIT

Unpacked Size

19 kB

Total Files

9

Last publish

Collaborators

  • weifan