i\'m trying to preview a vue web application through webpack-server-dev.I\'m following this guide https://medium.com/the-web-tub/creating-your-first-vue-js-pwa-project-22f7
I had the same problem, and I solved it in the following way:
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
plugins: [ new CleanWebpackPlugin({ cleanAfterEveryBuildPatterns: ['dist'] }) ]