我正在做一个 lit-element 项目,但我遇到了一个问题,reset.css
无法应用于包装的 Web 组件shadow-root
我已经尝试过这种方式,但出现以下错误。
Refused to apply style from 'http://localhost:8080/style/static/reset.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
我试过的代码是这样的:
<script>
var css = new CSSStyleSheet()
css.replace('@import url("./style/static/reset.css")')
document.adoptedStyleSheets = [css]
</script>
这被放入一个 html 文件中。
如何避免此错误,并将 reset.css 应用于 Web 组件?