Currently, I have my tailwind.config.js set up to scan for files that contain tailwind class names.
module.exports = {
mode: "jit",
content: ["**/*.razor", "**/*.cshtml", "**/*.html", "**/*.razor.css"],
theme: {},
variants: {},
plugins: [],
}
I am trying to reference the components in my RCL which also contain tailwind classes so I can generate one CSS file.
I have already tried to work with two CSS files and configs. One for the Blazor project and the other for the RCL. But as a results, I get both the CSS files overriding each other on certain components.
But since RCLs get compiled into DLLs I have no clue where to start to reference the RCL components for tailwindcss to scan.