In the tailwind.config.ts file there are these lines:
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
The defaultTheme and colors variables are defined but never used. This can lead to module overhead, I will remove these lines to reduce that.
In the tailwind.config.ts file there are these lines:
The
defaultThemeandcolorsvariables are defined but never used. This can lead to module overhead, I will remove these lines to reduce that.