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
Postcss dynamic config doesn't work after this commit because webpack object isn't passed anymore.
Please bring webpack object back.
And, the comment should be moved to load-postcss-config.js file.
lib/style-compiler/load-postcss-config.js:
module.exports=functionloadPostcssConfig(inlineConfig){if(process.env.VUE_LOADER_TEST||!loaded){// use the same config loading interface as postcss-loaderloaded=load({webpack: webpack},null,{argv: false}).catch(()=>{// postcss-load-config throws error when no config file is found,// but for us it's optional.})}
...