digoburigo

Results 19 comments of digoburigo

Oh wow. I see, it's colors named `border`, `background` and `foreground` applied to the TailwindCSS classes `border`, `bg` and `text`. Thanks, that was a little confusing 😅

So, to fix my issue, instead of putting the shadcn tailwindcss configuration in the UI package `tailwind.config` I put in the [tailwind config package](https://github.com/t3-oss/create-t3-turbo/blob/main/packages/config/tailwind/index.ts) of the monorepo and used the...

Vercel now has a template with turborepo https://vercel.com/templates/monorepos/turborepo-with-hono But this sample it's a simple `index.ts` file and for real world needs, its needed to organize the code in different packages...

So OpenLayers automatically make the conversion of COG to the map projection if the COG projection is registered in `proj4`?

I'm using Remix with Vite as the bundler. I put the snippet in the vite config and the error still throw

Remix uses `vite.config.ts`. Remix it's just a vite plugin in this setup. Example: ```ts import { vitePlugin as remix } from "@remix-run/dev"; import { installGlobals } from "@remix-run/node"; import {...

I'm trying to convert the token from the Google OAuth callback, getting the token from the Django session and returning it to another application. But when I deploy the server,...

That's only the URL that Django application it's running. For example, if it's running locally with NGINX is `http://localhost:80` Thanks for the info. I will try out. Good day!

No, I'm moving this to a different application, that's going to be in charge of validating the users. So I guess I will not encounter this problem. But if is...