Skip to content

Commit d02fcf1

Browse files
committed
example: update 🍰
1 parent affcb00 commit d02fcf1

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

example/src/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import './styles/index.css'
22
import './styles/duplicate.css'
3+
import './styles/syntax-error.css'
34

45
console.log(1)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.input::placeholder:not(.noAdaptiveTypography) {
2+
display: inline;
3+
}

example/webpack.config.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,13 @@ module.exports = {
5151
},
5252
],
5353
},
54-
plugins: [new LightningCssMinifyPlugin(disableNesting ? minifyOpts : {})],
54+
plugins: [
55+
new LightningCssMinifyPlugin(
56+
disableNesting
57+
? minifyOpts
58+
: {
59+
errorRecovery: true,
60+
},
61+
),
62+
],
5563
}

0 commit comments

Comments
 (0)