@charset rule in CSS causes warning in Vite
Describe the bug When I import the CSS in my Vite project, it causes a warning about the @charset rule needing to precede all other statements.
To Reproduce Steps to reproduce the behavior:
- Start a Vite project
- Install React-Datepicker
- Render a datepicker and import the CSS file
- If the CSS file is not imported as the first thing, Vite throws the warning.
Expected behavior No warning in Vite. It would probably be best to remove the @charset rule since it is unnecessary.
Screenshots

Additional context The warning points to an unrelated part of our styles, and does not make any sense. It took some time to figure out what the warning was about and track down the @charset rule and where it comes from. This is of course not React-datepicker's problem, just additional context.
I am using Vite 3.0.9, and React-Datepicker is imported through our internal component library. It is thus hard to ensure that the React-datepicker are imported as the absolute first thing.