I’m using Astro JS to build a google chrome extension, I have a problem when using tailwind.
Apparently Astro adds the css files to an _astro
folder in the dist
but this causes conflicts with google due to:
Filenames starting with “_” are reserved for use by the system.
Could not load manifest.
If I manually change the name of the folder and the link to it in the index.html
file it works, but its a pain to be doing this every time
- Do you know if its possible to change the name of this folder in some astro config?
- If it isn’t, how could I automate this process for every build?