Closed severinlandolt closed 5 months ago
Hi!
This PR removes the safelisted colors in tailwind.config.ts. Instead, we add the path of the lib folder to the content section.
tailwind.config.ts
lib
This ensures that all defined colors in chart-utils.tsx are generated.
chart-utils.tsx
"./pages/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", "./app/**/*.{js,ts,jsx,tsx,mdx}", + "./lib/**/*.{js,ts,jsx,tsx,mdx}", ], - safelist: ["stroke-amber-500", "bg-amber-500"], theme: { extend: { keyframes: {
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Hi!
This PR removes the safelisted colors in
tailwind.config.ts
. Instead, we add the path of thelib
folder to the content section.This ensures that all defined colors in
chart-utils.tsx
are generated.