plugin/preset files are not allowed to export objects only finctions

初始化nuxt+koa报错

新建项目

$ vue init nuxt-community/koa-template <project-name>
$ cd <project-name>
$ npm run dev

控制台报错
plugin/preset files are not allowed to export objects only finctions…
先降低nuxt版本至1.4.2:
npm uninstall nuxt
npm install [email protected] --save
再升级eslint-plugin-html
npm install eslint-plugin-html@^3 --save

 再次npm run dev成功监听3000端口

猜你喜欢

转载自blog.csdn.net/nightwishh/article/details/90715095