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
#3443 adds logging and reporting when an unregistered stylesheet is evaluated by the engine. The end goal here is to lock this functionality down completely and throw an error when an invalid stylesheet is detected. This is potentially a breaking a change, so we'll evaluate the risk of breakage through the reporting API.
End Goal
// Check that this stylesheet was generated by our compilerif(!isStylesheetRegistered(stylesheet)){thrownewError(TypeError,`Unexpected LWC stylesheet content found for component <${vm.tagName.toLowerCase()}>.`);}
The text was updated successfully, but these errors were encountered:
Description
#3443 adds logging and reporting when an unregistered stylesheet is evaluated by the engine. The end goal here is to lock this functionality down completely and throw an error when an invalid stylesheet is detected. This is potentially a breaking a change, so we'll evaluate the risk of breakage through the reporting API.
End Goal
The text was updated successfully, but these errors were encountered: