given the following code, and the lit-html vscode extension, syntax highlighting doesn't work on the static styles getter
class MyComponent extends LitElement {
// SYNTAX HIGHLIGHTING FAILS
static get styles() {
return css`
* {}
`
}
// SYNTAX HIGHLIGHTING WORKS
render() {
return html`
<style>
* {}
</style>
`
}
}
however it does work in the html template in the render function
how bad, for performance, is opting for the styles in the render function, instead of the static styles getter?