-
Notifications
You must be signed in to change notification settings - Fork 920
Closed
Labels
Description
I am asking for adding https://github.com/michael-ciniawsky/postcss-load-config to vue-loader. It would be helpful for people (like me ^^) who use gulp-postcss/postcss-loader and keep postcss config in one place. Now in order to use postcss in vue-loader I do:
{
postcss: require('../postcss.config')
}
it's not the end of the world, but I think would be nice if we could skip the require and idk pass true
as a value?
{
postcss: true // will try to get config from postcss.config.js
}
barraponto and exah