Changed /src/ to /app/ and now CSS doesnt work
Unanswered
Australian Freshwater Crocodile posted this in #help-forum
Australian Freshwater CrocodileOP
As the title suggests, I had to restructure my project (the next.js tutorial) as I buried things one folder too deep.
I changed it from /src/app/ to just /app/
To fix my css, I changed my import from
to
the import is now valid, but the CSS does not apply to the homepage and is messed up.
How do i fix please?
I changed it from /src/app/ to just /app/
To fix my css, I changed my import from
import "@/app/ui/global.css";to
import '../app/ui/global.css';the import is now valid, but the CSS does not apply to the homepage and is messed up.
How do i fix please?
1 Reply
Can you show folder structure @Australian Freshwater Crocodile