This warning probably means CSS type selectors are defined or the css file is referenced in a custom component.
Solution one:
Move the type selectors definition into the main application.
Solution two:
Replace the type selectors with class selectors.
replaced with
Solution one:
Move the type selectors definition into the main application.
Solution two:
Replace the type selectors with class selectors.
Label {
font-weight: 'bold';
}
replaced with
.label {
font-weight: 'bold';
}

4112

被折叠的 条评论
为什么被折叠?



