天天看点

Nuxt.js框架启动报错: 35 errors, 0 warnings potentially fixable with the `--fix` option.

今天正在做我可爱的谷粒学院,结果很幸运,我遇到了一个bug,它占据了我美好的下午时光.

如下所示:

Nuxt.js框架启动报错: 35 errors, 0 warnings potentially fixable with the `--fix` option.

项目运行效果:

Nuxt.js框架启动报错: 35 errors, 0 warnings potentially fixable with the `--fix` option.

后来了解到这些错误是由于eslint检查语法造成的,但是直接覆盖了我可爱的页面.

解决方案:

项目下建立一个 ​

​.eslintignore​

​的文件,里面可以写上不让eslint检查语法的文件后缀.

Nuxt.js框架启动报错: 35 errors, 0 warnings potentially fixable with the `--fix` option.

之后重启项目 ​

​npm run dev​

​ ,项目成功运行!

Nuxt.js框架启动报错: 35 errors, 0 warnings potentially fixable with the `--fix` option.
Nuxt.js框架启动报错: 35 errors, 0 warnings potentially fixable with the `--fix` option.

继续阅读