├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── .prettierrc ├── .releaserc ├── README.md ├── example ├── .eslintrc.cjs ├── .prettierrc ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public │ └── img │ │ ├── github.ico │ │ └── wikipedia.ico ├── src │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── main.tsx │ ├── nyan.ts │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── react-favicon.d.ts ├── src └── index.jsx ├── tsconfig.json └── tsup.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | node_modules/ 4 | .snapshots/ 5 | *.min.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/.releaserc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/README.md -------------------------------------------------------------------------------- /example/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/.eslintrc.cjs -------------------------------------------------------------------------------- /example/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/.prettierrc -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/index.html -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/package.json -------------------------------------------------------------------------------- /example/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/pnpm-lock.yaml -------------------------------------------------------------------------------- /example/public/img/github.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/public/img/github.ico -------------------------------------------------------------------------------- /example/public/img/wikipedia.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/public/img/wikipedia.ico -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/src/assets/react.svg -------------------------------------------------------------------------------- /example/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/src/main.tsx -------------------------------------------------------------------------------- /example/src/nyan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/src/nyan.ts -------------------------------------------------------------------------------- /example/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/tsconfig.node.json -------------------------------------------------------------------------------- /example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/example/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-favicon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/react-favicon.d.ts -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/src/index.jsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oflisback/react-favicon/HEAD/tsup.config.js --------------------------------------------------------------------------------