为什么package.json文件中的'type:module'是?”>

问题描述 投票:1回答:1

我升级了节点并构建了现有文件。

但是它没有建立,并且有一个错误。

Error [ERR_REQUIRE_ESM]: Must use import to load ES Module:                          │
   │   ~~/nuxt.config.js                                      │
   │   require() of ES modules is not supported.                                            │
   │   require() of ~~/nuxt.config.js from                    │
   │   ~~/config.js is an ES   │
   │   module file as it is a .js file whose nearest parent package.json contains "type":   │
   │   "module" which defines all .js files in that package scope as ES modules.            │
   │   Instead rename nuxt.config.js to end in .cjs, change the requiring code to use       │
   │   import(), or remove "type": "module" from                                            │
   │   ~~/package.json.  

所以我在package.json文件中删除了'type:module'。

可以删除它吗?

我升级了节点并构建了现有文件。但是它没有建立,并且有一个错误。错误[ERR_REQUIRE_ESM]:必须使用import来加载ES模块:││~~ / nuxt ....

node.js vue.js nuxt.js
1个回答
0
投票

最近出现了很多问题-我认为节点推出了一个更新并杀死了该应用程序。将节点回滚到先前的版本-解决了我的问题

© www.soinside.com 2019 - 2024. All rights reserved.