ESLint running on CSS?
0:0 error Parsing error: ESLint was configured to run on `<tsconfigRootDir>/src/styles/globals.css` using `parserOptions.project`: /path/to/project/tsconfig.json
The extension for the file (`.css`) is non-standard. You should add `parserOptions.extraFileExtensions` to your config
0:0 error Parsing error: ESLint was configured to run on `<tsconfigRootDir>/src/styles/globals.css` using `parserOptions.project`: /path/to/project/tsconfig.json
The extension for the file (`.css`) is non-standard. You should add `parserOptions.extraFileExtensions` to your config
Analytics w/ RSC
onClick event handler of the <a> tag. Now the blog link is a completely static component that is perfect for RSC, but I also would have to send JS to do that tracking. How should I build this ? I hate to convert this to a client side component.
It feels weird to send Javascript w/ a component for purely tracking purposes that does nothing to the UX. A static link, on paper, should be the perfect candidate to send 0 JS w/ it. ...Background image not loading? Help #noob

Building your own UI using clerk & t3

How does turborepo handle node_modules packages?
Is there a way to import a type from a Prisma Model on Client
The "experimental-edge" flag in nextjs allows me to deploy websocket in vercel?
How do I add "connect social platform" to my website? (not social login)
Should I share packages on Turborepo?
how come when i start a new typescript project, eslint breaks?

Prisma types from t3 turborepo db package
prisma object of type any. When manually writing the types into the import, it works and Typescript realizes that the package does in fact export these types.
How can I improve DX around this and get the types to work automatically?...How do I use ISR with t3 app.

Next-Auth Session in Server Function
getServerSession
```jsx
"use server";
...Formik, React-Datepicker error
TypeError: Cannot read properties of undefined (reading 'type')
when I try to pick a date with the```jsx...
"SyntaxError: Cannot use import statement outside a module" when attempting to build a turborepo app
Vercel and installing Julia
// src/pages/index.jsimport { useState } from "react";export default function Install() { const [message, setMessage] = useState(""); async function installJulia() { try { const response = await fetch("/api/installJulia", { method: "POST", headers: { "Content-Type": "application/json", }, }); const data = await response.json(); console.log(data); setMessage(JSON.stringify(data)); } catch (error) { console.error("Error:", error); setMessage("An error occurred while installing Julia."); } } return ( <main className="flex min-h-screen flex-col items-center justify-between p-24"> <button onClick={installJulia}>Install Julia</button> {message && <p className="mt-4 text-center text-red-600">{message}</p>} </main> );}
// src/pages/index.jsimport { useState } from "react";export default function Install() { const [message, setMessage] = useState(""); async function installJulia() { try { const response = await fetch("/api/installJulia", { method: "POST", headers: { "Content-Type": "application/json", }, }); const data = await response.json(); console.log(data); setMessage(JSON.stringify(data)); } catch (error) { console.error("Error:", error); setMessage("An error occurred while installing Julia."); } } return ( <main className="flex min-h-screen flex-col items-center justify-between p-24"> <button onClick={installJulia}>Install Julia</button> {message && <p className="mt-4 text-center text-red-600">{message}</p>} </main> );}
"PrismaClient is unable to be run in the browser" in Next.js API route

Cant use the same router to create multiple createTRPCReact?

Clerk not saving username
