-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Postcss config clean up (#4729)
Because: - I've been looking at other Postcss configurations for similar apps, we don't need some of our plugins and can probably simplify. This commit - Removes postcss-preset-env - Removes postcss-cli - we aren't using this anywhere - Removes postcss-flexbugs-fixes - we might need this again, but I want to see if any issues are reported.
- Loading branch information
1 parent
d2693f7
commit 8085a75
Showing
3 changed files
with
7 additions
and
815 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
module.exports = { | ||
plugins: [ | ||
require('postcss-import'), | ||
require('postcss-flexbugs-fixes'), | ||
require("tailwindcss/nesting"), | ||
require("tailwindcss"), | ||
require('postcss-preset-env')({ | ||
autoprefixer: { | ||
flexbox: 'no-2009' | ||
}, | ||
stage: 3 | ||
}), | ||
require("autoprefixer"), | ||
] | ||
} |
Oops, something went wrong.