shadcn

Results 1144 comments of shadcn
trafficstars

Have you looked into using the password grant? https://next-drupal.org/docs/authentication/password-grant

@juhov I see. Would a pluggable auth system solve your issue? As in bring your own auth headers?

@mikaelkundert @juhov are you on Drupal Slack? Can we chat say in 30 minutes?

@eiriksm We added support for basic auth to the `DrupalClient`. See https://next-drupal.org/docs/client/auth

Use a string: ``` --- name: Post lastUpdated: "2021-02-13" --- ``` Then you can format it on render: ```js export function formatDate(input: string): string { const date = new Date(input)...

Sorry. I forgot to review this. I added a few comments on the issue: https://github.com/arshad/next-mdx/issues/3#issuecomment-803573315

Hmm I can't reproduce this. See https://6ezyv.sse.codesandbox.io/blog/hello-world Can you take a look at this codesandbox: https://codesandbox.io/s/immutable-cookies-6ezyv?file=/pages/blog/%5B...slug%5D.js

> Fantastic library, I'm really enjoying the simplicity it brings to building an mdx-powered site with relational data. Thank you. > It would be useful to add reading-time and wordCount...

@bketelsen A quick update here. I've been working on a [Table of Contents](https://github.com/arshad/next-mdx/tree/master/packages/next-mdx-toc) module and I think I have an idea how we can solve this with plugins. I'll post...

The shadow DOM `/deep/` selector has been deprecated in the latest Chrome. That's why we can't hide these comments in the inspector. We'll need to figure out a way around...