Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(www): update Remix install to use Vite, tip for className lint #3027

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

llllOllOOll
Copy link

  • docks: Switch Remix installation to Vite (default method)

  • docs: Add tip to avoid 'className' prop validation lint error

* docks: Switch Remix installation to Vite (default method)

*docs:  Add tip to avoid 'className' prop validation lint error
Copy link

vercel bot commented Mar 16, 2024

@llllOllOOll is attempting to deploy a commit to the shadcn-pro Team on Vercel.

A member of the Team first needs to authorize it.

@gojnimer6553
Copy link

I solved the classname issue on my remix project only extending my .eslintrc.cjs with "@remix-run/eslint-config" and
"@remix-run/eslint-config/node"

    extends: [
    "eslint:recommended",
    "@remix-run/eslint-config",
    "@remix-run/eslint-config/node",
  ],

tailwind import

import tailwind from "~/tailwind.css?url";
export const links: LinksFunction = () => [
  { rel: "stylesheet", href: tailwind },
];

@llllOllOOll
Copy link
Author

Is there anything wrong with this PR? Why was it accepted? Let me know if it needs any changes. I ran it on a new Remix project today, and it worked okay.

@llllOllOOll
Copy link
Author

Here's a tip in case someone encounters this warning:

Fix Lint Error: 'className' is Missing in Props Validation (eslint-react/prop-types)
If you don't consider it relevant, you can remove it.

@llllOllOOll
Copy link
Author

@gojnimer6553 You don't need to import it in this way.

import tailwind from "~/tailwind.css?url";
export const links: LinksFunction = () => [
{ rel: "stylesheet", href: tailwind },
];

Just to use this: import "~/tailwind.css";
Links isn't necessary.

@shadcn
Copy link
Collaborator

shadcn commented Sep 15, 2024

@llllOllOOll Is this ready to go? Is it updated for the latest remix version?

@shadcn shadcn added documentation Improvements or additions to documentation area: www postpone: more info or changes requested maintainers asked a question or needs more info framework: remix labels Sep 15, 2024
This was referenced Sep 15, 2024
@shadcn shadcn added the area: roadmap This looks great. We'll add it to the roadmap, review and merge. label Sep 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: roadmap This looks great. We'll add it to the roadmap, review and merge. area: www documentation Improvements or additions to documentation framework: remix postpone: more info or changes requested maintainers asked a question or needs more info
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants