You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
In the Vite manifiest, a file can have additional CSS or js imports as subfiles. Currently none of those additional files are being added.
For example, if you import CSS in your app.js, the manifest will include a
cssproperty:That CSS file is never enqueued. I believe this is also true if vite chunks your js, it goes into an "import" property:
I think something like this needs to get added:
All reactions