Skip to content

Commit 154afa6

Browse files
committed
styles: Fix missing nesting rules in production
1 parent 417f446 commit 154afa6

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

ember-cli-build.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,15 @@ module.exports = function (defaults) {
5656
cssModules: {
5757
extension: 'module.css',
5858
plugins: {
59-
postprocess: [require('postcss-preset-env')({ browsers, preserve: false })],
59+
postprocess: [
60+
require('postcss-preset-env')({
61+
browsers,
62+
preserve: false,
63+
features: {
64+
'nesting-rules': true,
65+
},
66+
}),
67+
],
6068
},
6169
},
6270
fingerprint: {

0 commit comments

Comments
 (0)