WebNuxt的package.json中添加了"type":"module",运行时控制台还显示 WARN The CJS build of Vite's Node API is deprecated.webnuxt
我的 WebNuxt 项目中的package.json中添加了"type":"module",运行时控制台还显示 WARN The CJS build of Vite's Node API is deprecated. (今天更新到了webnuxt的最新版本)
====================
但是,我下载了一份最新的 https://gitee.com/wonderful-code/build-admin-nuxt.git 代码运行后,并不会提示,所以请教一下,需要怎么配置才能不显示那个提示呢?谢谢
请先登录
如果基本项目的
package.json
中已经添加了"type":"module"
,那么应该是其他某个地方使用了CJS
的语法造成的警告,CJS 使用 require 和 module.exports,而 ESM 使用 import 和 export。学习了,感谢感谢!!
- 1
前往