react-query-questions
solid-query-questions
table-questions
virtual-questions
router-questions
react-charts-questions
ranger-questions
vue-query-questions
svelte-query-questions
bling-questions
form-questions
angular-query-questions
start-questions
db-questions
start-showcase
router-showcase
📣-announcements
api routes GET returning 404
/api/getAllCCTV
this is the code
```
import { PrismaClient } from "@prisma/client";...Tailwind v4 + pnpm + turbo
domains
and all my shared elements inside packages
.
Since v4 uses a css file, I have a package called styling
that exports a app.css file with all my themeing and vars which I can then consume in all of my start
domains by using the following piece of code....Testing Server Functions with Playwright
How to access parent routes loaderData in `head: () => {}`?
/$lang/route.tsx
file:
```ts
loader: async ({ params }) => {
return {...Server and client environment variables are being loaded from different .env files.
/src/
directory to better organize the files. The issue is that server environment variables (from process.env
) are being loaded from web/src/.env
, while the client variables (from import.meta.env
) are being loaded from web/.env
.
I found that I can set vite.envDir
in app.config.ts
. I can technically use this to solve my issue, but the .env
file would have to live in /web/src
. This is not ideal. Instead I'd like the .env
file to live in /web
. But I couldn't find any way to set path for server envs.
Is there way to set which file the server envs are loaded from? Or possibly, is there any other solution to my issue?...Import issue in routeTree.gen.ts when creating api routes
src/routes/api/auth/$.ts
:
```
import { createAPIFileRoute } from "@tanstack/react-start/api";
import { auth } from "@/lib/server/auth";
...Tanstack-Query with Tanstack-Start
Monorepo import issues
@repo/database
. The TS compiler does not complain, since it's in package.json
and installed, however, the app seems to fail.
...Tailwind V4 not recognize in production
Client side routing via react-query
Is is possible to do ssr without vinxi?
Best way to restrict i18n route params?
$lang
route param to only allow valid values of the languages I support? Right now I tried something like this but I would have to maintain a list of reserved paths.
Also favicon.ico
etc trigger this param which makes this error prone and annoying to maintain 🤔
...When will tanstack start stable version without vinxi will be released?
[DISSCUSSION] Tanstack Start or just Router with Vite
Understanding Layouts

JS API
Refetch of all cache keys despite invalidateQueries([key])
Tanstack Start as a PWA
Caching on server with TTL
How to enable i18n and nprogress client-side ?
nprogress
as well as loading the react-i18next
extension. Is this the proper way?
Here is my client.tsx
file:
```typescript...