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
Does this issue occur when all extensions are disabled?: Yes
VS Code Version: 1.96.2 / main
OS Version: macOS 15.2
There are several issues that impact the developer experience when developing CSS for vscode itself
Load/reload window is very slow
this seems to be related to the use of @import url() which appears to download stylesheets serially. switching to <link> tags locally removed this hotspot
Does this issue occur when all extensions are disabled?: Yes
There are several issues that impact the developer experience when developing CSS for vscode itself
Load/reload window is very slow
this seems to be related to the use of
@import url()
which appears to download stylesheets serially. switching to<link>
tags locally removed this hotspotCSS changes are not picked up on reload window
known issue see Ensure "Developer: Reload Window" actually picks up new css file contents #237603 (comment) and fix: disable persistent and in-memory cache when loading resources in oss #234357
also
CSSDevelopmentService
caches its list of discovered css files, so if you add or delete a css file things do not work as expectedFull reload is very cumbersome for simple CSS changes
a
Reload CSS
option that simply refreshes all the CSS on the page would be much better experienceautomatically reloading CSS based on file-watch events would be ideal
The text was updated successfully, but these errors were encountered: