├── .commitlintrc.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierrc ├── .releaserc.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── example ├── .eslintrc ├── .gitignore ├── image-loader.config.js ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── index.tsx │ └── legacy.tsx ├── public │ ├── favicon.ico │ └── vercel.svg ├── styles │ ├── Home.module.css │ └── globals.css ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── __tests__ │ ├── image.spec.tsx │ └── with-image-loader.spec.ts ├── image-loader.ts ├── image.tsx ├── index.ts ├── legacy │ └── image.tsx └── with-image-loader.ts ├── tsconfig.json ├── vitest.config.ts ├── vitest.setup.ts └── yarn.lock /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/README.md -------------------------------------------------------------------------------- /example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/.eslintrc -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/image-loader.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/image-loader.config.js -------------------------------------------------------------------------------- /example/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/next-env.d.ts -------------------------------------------------------------------------------- /example/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/next.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/package.json -------------------------------------------------------------------------------- /example/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/pages/_app.tsx -------------------------------------------------------------------------------- /example/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/pages/index.tsx -------------------------------------------------------------------------------- /example/pages/legacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/pages/legacy.tsx -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/public/vercel.svg -------------------------------------------------------------------------------- /example/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/styles/Home.module.css -------------------------------------------------------------------------------- /example/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/styles/globals.css -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/image.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/src/__tests__/image.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/with-image-loader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/src/__tests__/with-image-loader.spec.ts -------------------------------------------------------------------------------- /src/image-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/src/image-loader.ts -------------------------------------------------------------------------------- /src/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/src/image.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/legacy/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/src/legacy/image.tsx -------------------------------------------------------------------------------- /src/with-image-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/src/with-image-loader.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.setup.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom' -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-image-loader/HEAD/yarn.lock --------------------------------------------------------------------------------