Bugs
-
Uncaught ReferenceError: React is not defined
- Import
React
in every component withimport React from 'react'
- Import
-
npm run
doesn't work on Windows 10/11- Run
$env:NODE_OPTIONS="--openssl-legacy-provider"
on PowerShell before executing thenpm run
command
- Run
-
TailwindCSS not compiling styles
- Create
./public/style.css
- Execute
npx tailwindcss -i ./src/index.css -o ./public/style.css --watch
- Add
<link href="%PUBLIC_URL%/style.css" rel="stylesheet">
to./public/index.html
- Create