├── .gitignore ├── .postcssrc.json ├── LICENSE.md ├── README.md ├── astro.config.ts ├── biome.json ├── package.json ├── pnpm-lock.yaml ├── public ├── _redirects └── favicon.svg ├── src ├── actions │ └── index.ts ├── env.d.ts └── pages │ ├── 404.astro │ ├── [...csr].astro │ ├── [...ssg].astro │ ├── [...ssr].astro │ ├── _app │ ├── entry.tsx │ ├── handle-ssr-request.ts │ ├── queries.ts │ ├── query-client.ts │ ├── router.tsx │ ├── routes │ │ ├── __root.tsx │ │ ├── _auth-csr.csr.profile.tsx │ │ ├── _auth-csr.tsx │ │ ├── _auth-ssr.ssr.profile.tsx │ │ ├── _auth-ssr.tsx │ │ ├── _auth_rewrite.rewrite.profile.tsx │ │ ├── _auth_rewrite.tsx │ │ ├── csr.login.tsx │ │ ├── index.tsx │ │ ├── rewrite.login.tsx │ │ ├── ssg.tsx │ │ ├── ssg_.no-hydration.tsx │ │ ├── ssr.tsx │ │ ├── ssr_.login.tsx │ │ └── ssr_.no-hydration.tsx │ ├── try-catch.ts │ └── utils.ts │ ├── _layout.astro │ ├── _style.css │ ├── api │ └── data.ts │ └── rewrite.astro └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/.postcssrc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/astro.config.ts -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | interface ImportMetaEnv { 2 | readonly _: string 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/[...csr].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/[...csr].astro -------------------------------------------------------------------------------- /src/pages/[...ssg].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/[...ssg].astro -------------------------------------------------------------------------------- /src/pages/[...ssr].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/[...ssr].astro -------------------------------------------------------------------------------- /src/pages/_app/entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/entry.tsx -------------------------------------------------------------------------------- /src/pages/_app/handle-ssr-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/handle-ssr-request.ts -------------------------------------------------------------------------------- /src/pages/_app/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/queries.ts -------------------------------------------------------------------------------- /src/pages/_app/query-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/query-client.ts -------------------------------------------------------------------------------- /src/pages/_app/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/router.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/__root.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/_auth-csr.csr.profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/_auth-csr.csr.profile.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/_auth-csr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/_auth-csr.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/_auth-ssr.ssr.profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/_auth-ssr.ssr.profile.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/_auth-ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/_auth-ssr.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/_auth_rewrite.rewrite.profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/_auth_rewrite.rewrite.profile.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/_auth_rewrite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/_auth_rewrite.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/csr.login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/csr.login.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/index.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/rewrite.login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/rewrite.login.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/ssg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/ssg.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/ssg_.no-hydration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/ssg_.no-hydration.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/ssr.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/ssr_.login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/ssr_.login.tsx -------------------------------------------------------------------------------- /src/pages/_app/routes/ssr_.no-hydration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/routes/ssr_.no-hydration.tsx -------------------------------------------------------------------------------- /src/pages/_app/try-catch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/try-catch.ts -------------------------------------------------------------------------------- /src/pages/_app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_app/utils.ts -------------------------------------------------------------------------------- /src/pages/_layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/_layout.astro -------------------------------------------------------------------------------- /src/pages/_style.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | -------------------------------------------------------------------------------- /src/pages/api/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/api/data.ts -------------------------------------------------------------------------------- /src/pages/rewrite.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/src/pages/rewrite.astro -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universse/astro-tanstack/HEAD/tsconfig.json --------------------------------------------------------------------------------