While reviewing the Tailwind documentation on custom media queries, I came across an interesting option to create a fully custom breakpoint using the 'raw' key.
After adding this to my configuration file, I noticed that when I saved the file, Prettier automatically removed the single quotation marks (' ') from the raw key. This meant that ('raw') became (raw).
This made me wonder if it is okay for the raw key to not be enclosed in single quotation marks, or if it should be exactly as ('raw').
If anyone could provide an explanation for this, I would greatly appreciate it.
I tried looking through the Tailwind docs for clarification but couldn't find a satisfactory answer.