├── .editorconfig ├── .env.example ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── api └── index.js ├── package.json ├── patches ├── @silvia-odwyer__photon@0.3.2.patch └── wasm-image-optimization@0.0.7.patch ├── pnpm-lock.yaml └── vercel.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | WHITE_LIST = "miantiao.me,mt.ci" 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/README.md -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/api/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/package.json -------------------------------------------------------------------------------- /patches/@silvia-odwyer__photon@0.3.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/patches/@silvia-odwyer__photon@0.3.2.patch -------------------------------------------------------------------------------- /patches/wasm-image-optimization@0.0.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/patches/wasm-image-optimization@0.0.7.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miantiao-me/vercel-edge-image/HEAD/vercel.json --------------------------------------------------------------------------------