postcss-loader
Last updated
Was this helpful?
Last updated
Was this helpful?
Loader for to process CSS with
Configuration
postcss.config.js
Config Cascade
You can use different postcss.config.js
files in different directories. Config lookup starts from path.dirname(file)
and walks the file tree upwards until a config file is found.
After setting up your postcss.config.js
, add postcss-loader
to your webpack.config.js
. You can use it standalone or in conjunction with css-loader
(recommended). Use it after css-loader
and style-loader
, but before other preprocessor loaders like e.g sass|less|stylus-loader
, if you use any.
webpack.config.js
⚠️ When
postcss-loader
is used standalone (withoutcss-loader
) don't use@import
in your CSS, since this can lead to quite bloated bundles
webpack.config.js
(recommended)
{Boolean}
undefined
Enable PostCSS Parser support in CSS-in-JS
{String|Object}
undefined
Set PostCSS Parser
{String|Object}
undefined
Set PostCSS Syntax
{String|Object}
undefined
Set PostCSS Stringifier
{Object}
undefined
Set postcss.config.js
config path && ctx
{Array|Function}
[]
Set PostCSS Plugins
{String|Boolean}
false
Enable Source Maps
Exec
webpack.config.js
Config
{String}
undefined
PostCSS Config Directory
{Object}
undefined
PostCSS Config Context
Path
You can manually specify the path to search for your config (postcss.config.js
) with the config.path
option. This is needed if you store your config in a separate e.g ./config || ./.config
folder.
⚠️ Otherwise it is unnecessary to set this option and is not recommended
webpack.config.js
Context (ctx)
env
{String}
'development'
process.env.NODE_ENV
file
{Object}
loader.resourcePath
extname
, dirname
, basename
options
{Object}
{}
Options
postcss-loader
exposes context ctx
to the config file, making your postcss.config.js
dynamic, so can use it to do some real magic ✨
postcss.config.js
webpack.config.js
Plugins
webpack.config.js
⚠️ webpack requires an identifier (
ident
) inoptions
when{Function}/require
is used (Complex Options). Theident
can be freely named as long as it is unique. It's recommended to name it (ident: 'postcss'
)
Syntaxes
{String|Function}
undefined
Custom PostCSS Parser
{String|Function}
undefined
Custom PostCSS Syntax
{String|Function}
undefined
Custom PostCSS Stringifier
Parser
webpack.config.js
Syntax
webpack.config.js
Stringifier
webpack.config.js
SourceMap
Enables source map support, postcss-loader
will use the previous source map given by other loaders and update it accordingly, if no previous loader is applied before postcss-loader
, the loader will generate a source map for you.
webpack.config.js
'inline'
You can set the sourceMap: 'inline'
option to inline the source map within the CSS directly as an annotation comment.
webpack.config.js
Stylelint
webpack.config.js
Autoprefixing
webpack.config.js
CSS Modules
webpack.config.js
CSS-in-JS
webpack.config.js
As result you will be able to write styles in the following way
You need to have only one default export per style module
webpack.config.js
You can read more about common PostCSS Config .
If you use JS styles without the parser, add the exec
option.
⚠️ Note that you can't use a filename other than the (e.g .postcssrc.js
, postcss.config.js
), this option only allows you to manually specify the directory where config lookup should start from
includes , so adding it separately is not necessary if you already use the preset.
This loader with out of the box due to the way css-loader
processes file imports. To make them work properly, either add the css-loader’s option.
or use instead of css-loader
.
If you want to process styles written in JavaScript, use the parser.
If you are using Babel you need to do the following in order for the setup to work
Add to your configuration