We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent affcb00 commit d02fcf1Copy full SHA for d02fcf1
example/src/index.js
@@ -1,4 +1,5 @@
1
import './styles/index.css'
2
import './styles/duplicate.css'
3
+import './styles/syntax-error.css'
4
5
console.log(1)
example/src/styles/syntax-error.css
@@ -0,0 +1,3 @@
+.input::placeholder:not(.noAdaptiveTypography) {
+ display: inline;
+}
example/webpack.config.js
@@ -51,5 +51,13 @@ module.exports = {
51
},
52
],
53
54
- plugins: [new LightningCssMinifyPlugin(disableNesting ? minifyOpts : {})],
+ plugins: [
55
+ new LightningCssMinifyPlugin(
56
+ disableNesting
57
+ ? minifyOpts
58
+ : {
59
+ errorRecovery: true,
60
+ },
61
+ ),
62
+ ],
63
}
0 commit comments