We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d333f2 commit eeb42cdCopy full SHA for eeb42cd
src/processTailwindFeatures.js
@@ -29,6 +29,22 @@ export default function(getConfig) {
29
substituteResponsiveAtRules(config),
30
substituteScreenAtRules(config),
31
substituteClassApplyAtRules(config, utilities),
32
+ function (root, result) {
33
+ root.rawCache = {
34
+ colon: ': ',
35
+ indent: ' ',
36
+ beforeDecl: '\n',
37
+ beforeRule: '\n',
38
+ beforeOpen: ' ',
39
+ beforeClose: '\n',
40
+ beforeComment: '\n',
41
+ after: '\n',
42
+ emptyBody: '',
43
+ commentLeft: ' ',
44
+ commentRight: ' ',
45
+ semicolon: false
46
+ }
47
+ },
48
]).process(css, { from: _.get(css, 'source.input.file') })
49
}
50
0 commit comments