-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JS support for PostCSS config #27819
Comments
This feature request is now candidate for our backlog! In the next phase, the community has 60 days to upvote. If the request receives more than 20 upvotes, we'll move it to our consideration list. You can find more details about the feature request process in our documentation. |
@kreuzerk I had a similar requirement and created my own PostCSS plugin as a workaround. You can import @fullhuman/postcss-purgecss in your plugin and pass the necessary configuration to it. This is an example plugin: // custom-postcss-plugin.js
const postcss = require('postcss');
const rtlcss = require('postcss-rtlcss');
module.exports = (opts = {}) => {
return {
postcssPlugin: 'esbuild-postcss-rtlcss',
Once(...args) {
const options = // my options
rtlcss(options).Once(...args);
}
};
};
module.exports.postcss = true; After that, you need to move this plugin to node_modules. Adding it to the package.json as a package is the easiest way to do it. "devDependencies": {
"my-custom-postcss-plugin": "./plugins/postcss-plugins/my-custom-postcss-plugin",
} And define your plugin as follows: postcss.config.json {
"plugins": {
"tailwindcss": {
"config": "tailwind.config.js"
},
"autoprefixer": {},
"my-custom-postcss-plugin": {}
}
} |
Nice. Thx @mehmet-erim for sharing, will give it a try. |
Just a heads up that we kicked off a community voting process for your feature request. There are 20 days until the voting process ends. Find more details about Angular's feature request process in our documentation. |
I've been looking for a long time to custom postcss config, then i found your issue, it helps... |
@zcmk123 same issue here, did you find the official way to config postcss in angular cli ? |
@robmanganelly i believe there isn't an official way to config postcss, at least in angular official docs. angular cli support tailwindcss and i've check their source code, angular cli load postcss config for sure, but only in json format. currently in my project, i created a postcss.config.json to customize postcss |
Command
config
Description
Currently the CLI supports custom PostCSS configurations in the format of JSON files. The problem is that the JSON format has its limitation. In our case for example we try to configure CSS purging with the
fullhuman/postcss-purgecss
plugin.Unfortunately this config is not enough and therefore we would need to configure some extractors:
Describe the solution you'd like
Support PostCSS configuration files writen in JavaScript.
Describe alternatives you've considered
No response
The text was updated successfully, but these errors were encountered: