Describe the bug
https://unpkg.com/browse/@material/mwc-button@0.22.1/mwc-button.js
I just checking the @material/mwc-button and it has this CSS import line:
import { styles } from './styles.css';
But the browser can't load this .css file (at least without server magic).
Expected behavior
Use code that the browser understand.
Maybe as .css.js?
import { styles } from './styles.css.js';
Describe the bug
https://unpkg.com/browse/@material/mwc-button@0.22.1/mwc-button.js
I just checking the
@material/mwc-buttonand it has this CSS import line:But the browser can't load this
.cssfile (at least without server magic).Expected behavior
Use code that the browser understand.
Maybe as
.css.js?