CopyPastor

Detecting plagiarism made easy.

Score: 1; Reported for: String similarity Open both answers

Possible Plagiarism

Reposted on 2024-11-20
by gravlax

Original Post

Original - Posted on 2024-11-20
by gravlax



            
Present in both answers; Present only in the new answer; Present only in the old answer;

I had the same kind of issue. It was indeed linked to `tailwind.config.js`, and `"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"` line.
The theme folder was not present in `./node_modules/@nextui-org` because the TailwindCSS version was too old.
**Solution: ensure TailwindCSS version >=3.4.0.**
In package.json > dependencies: ```` "tailwindcss": "3.4.0" ```` Then remove `node_modules` and `npm i` again
I had the same kind of issue. It was indeed linked to `tailwind.config.js`, and `"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"` line.
The theme folder was not present in `./node_modules/@nextui-org` because the TailwindCSS version was too old.
**Solution: ensure TailwindCSS version >=3.4.0.**
In package.json > dependencies: ```` "tailwindcss": "3.4.0" ```` Then remove `node_modules` and `npm i` again

        
Present in both answers; Present only in the new answer; Present only in the old answer;