-
Notifications
You must be signed in to change notification settings - Fork 6
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
Adds Nextjs Loader #909
Adds Nextjs Loader #909
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
src/app/[locale]/layout.tsx
Outdated
color="#6200FF" | ||
shadow="0 0 10px #6200FF,0 0 5px #6200FF" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To avoid hard coding colors we could use a css variable injected by tailwind here
color="#6200FF" | |
shadow="0 0 10px #6200FF,0 0 5px #6200FF" | |
color="hsl(var(--primary-cta))" | |
shadow="0 0 10px hsl(var(--primary-cta)),0 0 5px hsl(var(--primary-cta))" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed
closes #91
What changed? Why?
This PR adds the NextJS Loader lib to SWC after this issue has been resolved.
How has it been tested?