In my index.css I have these annotations:
@import "tailwindcss" prefix(tw) source(none);
@source "../content_script";
Generated CSS file has styles with names that are not under content_script and not anywhere in my project
@layer base {
*, :after, :before, ::backdrop {
box-sizing: border-box;
border: 0 solid;
margin: 0;
padding: 0;
}
::file-selector-button {
box-sizing: border-box;
border: 0 solid;
margin: 0;
padding: 0;
}
/* ... */
}
/* ... */
How to get rid of unnecessary generated styles? Have them not be generated at all?