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 am not very much familiar with webpack and currently learning it
although this thing below helped me fix the issue
I just uninstall clean-webpack-plugin and then reinstall as dependency before this i've intalled as a dev-dependency
after uninstall and installing it like that : npm install --save clean-webpack-plugin
and by adding this
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
solved my issue!!
hope it helps