standard-minifier-css
This package is the default css minifier in Meteor apps. In addition to minifying the css code in production builds, it also runs any PostCSS plugins configured for the app.
Post CSS
This package can optionally run PostCSS plugins on the css files in your app. To enable:
- Install npm peer dependencies:
meteor npm install -D postcss postcss-load-config
- Add PostCSS Config. Create a
postcss.config.js
file and add a config:
module.exports = {
plugins: {
autoprefixer: {},
}
};
The example config enables the
autoprefixer
postcss plugin. You can install the plugin by runningmeteor npm install -D autoprefixer
.
Learn more about configuring postcss or find a list of available plugins.
After making changes to the PostCSS Config, meteor
must be restarted for it to use the new config.
Exclude Meteor Packages
In addition to the css files in your app, PostCSS will also process the css files added from Meteor packages. In case you do not want these files to be processed, or they are not compatible with your PostCSS config, you can have PostCSS ignore them by using the excludedMeteorPackages
option:
module.exports = {
plugins: {
autoprefixer: {},
},
excludedMeteorPackages: [
'github-config-ui',
'constellation:console'
]
};
Tailwind CSS
Tailwind CSS is fully supported. Since HMR applies updates to js files earlier than the css is updated, there can be a delay when using a Tailwind CSS class the first time before the styles are applied.