-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Closed
Description
This issue is in reference to this comment:
#1274 (comment)
@nelson6e65 wanted to disable CSS Grid from being output into the CSS file.
This is the config he had to implement to accomplish this:
corePlugins: {
gap: false,
columnGap: false,
rowGap: false,
gridColumn: false,
gridColumnEnd: false,
gridColumnStart: false,
gridRow: false,
gridRowEnd: false,
gridRowStart: false,
gridTemplateColumns: false,
gridTemplateRows: false,
gridAutoFlow: false,
},
That is a lot of config just to completly disable CSS Grid.
Ideally you should be able to add this to your config file and that would disable all CSS Grid specific CSS from being output:
corePlugins: {
grid: false,
},
nelson6e65, daflh and charle-connoringold
Metadata
Metadata
Assignees
Labels
No labels