We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eabde5 commit d18a896Copy full SHA for d18a896
src/index.js
@@ -82,7 +82,7 @@ module.exports = postcss.plugin(PLUGIN_NAME, (opts = {}) => {
82
throw new Error('Plugin missing from options.');
83
}
84
const earlierPlugins = result.processor.plugins.slice(0, resultPluginIndex);
85
- const loaderPlugins = [...pluginList, ...earlierPlugins];
+ const loaderPlugins = [...earlierPlugins, ...pluginList];
86
const loader = getLoader(opts, loaderPlugins);
87
const parser = new Parser(loader.fetch.bind(loader));
88
0 commit comments