记录下跑VUE+webpack-dev-server安装使用的问题

发现webpack-dev-server 的版本和 webpack 发生冲突:

解决方案:创建新的webpack-dev-server

卸载:

npm uninstall webpack-dev-server

创建:(注意版本号,对应上)

npm i -D [email protected]  [email protected]  [email protected] [email protected]

然后如果报错,使用

安装VUE注意版本:

npm install [email protected] --save

然后出现问题:

You may use special comments to disable some warnings.
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.

解决:
找到build目录下的webpack.base.conf.js文件,注释掉其中的与有关的eslint规则
// ...(config.dev.useEslint ? [createLintingRule()] : []),

然后就OK啦

你可能感兴趣的:(vue.js,webpack,前端)