README.md

March 15, 2023 · View on GitHub

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 namemustmeaningtypeexample
imagePathNoThe image path to be found, default src/assets/imagesArray<string>findImageDuplicates({ imagePath: ["src/assets/images", ...] })
imageTypeNoThe 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',...] })
exitOnDuplicateNoWhether to exit the process after finding the duplicate picture, by default ture Exit the processBooleanfindImageDuplicates({ 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