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
The mwc components do not currently work with lit 2.0.0-rc.2, even when forcing resolutions for lit-html and lit-element to match due to requirement for importing directives with an extension. e.g:
Currently: import { ifDefined } from 'lit-html/directives/if-defined';
Should be: import { ifDefined } from 'lit-html/directives/if-defined.js';
The text was updated successfully, but these errors were encountered:
I don't think lit cares about file extensions directly, but this is probably more important for your serving or bundling infrastructure to have file extensions.
The mwc components do not currently work with lit 2.0.0-rc.2, even when forcing resolutions for lit-html and lit-element to match due to requirement for importing directives with an extension. e.g:
Currently:
import { ifDefined } from 'lit-html/directives/if-defined';
Should be:
import { ifDefined } from 'lit-html/directives/if-defined.js';
The text was updated successfully, but these errors were encountered: