├── .gitignore ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public └── image.png ├── src ├── App.css ├── App.tsx ├── RemoveBG.tsx ├── ai.ts ├── build.css ├── main.tsx ├── vite-env.d.ts └── worker.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/public/image.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/RemoveBG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/src/RemoveBG.tsx -------------------------------------------------------------------------------- /src/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/src/ai.ts -------------------------------------------------------------------------------- /src/build.css: -------------------------------------------------------------------------------- 1 | @tailwind utilities; 2 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ducan-ne/remove-bg/HEAD/vite.config.ts --------------------------------------------------------------------------------