├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ ├── publish-commit.yaml │ └── publish.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.MD ├── assets └── remix-cache.png ├── package.json ├── pull_request_template.md ├── src └── index.tsx ├── test-apps └── testing-app │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── app │ ├── root.tsx │ ├── routes.ts │ └── routes │ │ ├── _index.tsx │ │ ├── test.tsx │ │ └── user.$user.tsx │ ├── env.d.ts │ ├── package.json │ ├── public │ └── favicon.ico │ ├── tsconfig.json │ └── vite.config.ts ├── tsconfig.json └── vitest.config.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publish-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/.github/workflows/publish-commit.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /build -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/SECURITY.MD -------------------------------------------------------------------------------- /assets/remix-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/assets/remix-cache.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/package.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/src/index.tsx -------------------------------------------------------------------------------- /test-apps/testing-app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/.eslintrc.cjs -------------------------------------------------------------------------------- /test-apps/testing-app/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | /.cache 4 | /build 5 | .env 6 | -------------------------------------------------------------------------------- /test-apps/testing-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/README.md -------------------------------------------------------------------------------- /test-apps/testing-app/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/app/root.tsx -------------------------------------------------------------------------------- /test-apps/testing-app/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/app/routes.ts -------------------------------------------------------------------------------- /test-apps/testing-app/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/app/routes/_index.tsx -------------------------------------------------------------------------------- /test-apps/testing-app/app/routes/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/app/routes/test.tsx -------------------------------------------------------------------------------- /test-apps/testing-app/app/routes/user.$user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/app/routes/user.$user.tsx -------------------------------------------------------------------------------- /test-apps/testing-app/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/env.d.ts -------------------------------------------------------------------------------- /test-apps/testing-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/package.json -------------------------------------------------------------------------------- /test-apps/testing-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/public/favicon.ico -------------------------------------------------------------------------------- /test-apps/testing-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/tsconfig.json -------------------------------------------------------------------------------- /test-apps/testing-app/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/test-apps/testing-app/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forge-42/remix-client-cache/HEAD/vitest.config.ts --------------------------------------------------------------------------------