You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feature #130 Add options callback to Encore.enablePostCssLoader() (Lyrkan)
This PR was merged into the master branch.
Discussion
----------
Add options callback to Encore.enablePostCssLoader()
This PR allows to add a callback as the first argument of `Encore.enablePostCssLoader()` in order to be able to modify the options of the `postcss-loader`.
As an example (fixes#129):
```js
Encore.enablePostCssLoader((options) => {
options.config = {
path: 'app/config/postcss.config.js'
};
});
```
Commits
-------
0999277 Add options callback to Encore.enablePostCssLoader()
0 commit comments