From 6d736ededd68ab8cbe28944ea352822a5a44f07e Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Thu, 21 Feb 2019 17:50:06 +0100 Subject: [PATCH] Update example config According to the docs: https://github.com/postcss/postcss-loader#path One cannot change the filename, only the path. --- frontend/encore/postcss.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/encore/postcss.rst b/frontend/encore/postcss.rst index 16d3ede5b17..705b28c9758 100644 --- a/frontend/encore/postcss.rst +++ b/frontend/encore/postcss.rst @@ -48,7 +48,7 @@ You can also pass options to the `postcss-loader`_ by passing a callback: // ... + .enablePostCssLoader((options) => { + options.config = { - + path: 'config/postcss.config.js' + + path: 'path/to/config/' + }; + }) ;