I was just setting up a vue project using the webpack template like stated here: http://vuejs-templates.github.io/webpack/
However after running npm run dev just to
Since vue-cli uses prettier API interface here and hardcoded the options, and prettier dependency was added in project @vue/component-compiler-utils.
vue-cli
@vue/component-compiler-utils
You could try npm i prettier@~1.12.0 to force the prettier version here.
npm i prettier@~1.12.0
BTW someone did a pull request with the fix