Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试使用 ES2020 功能,例如 next.js 中的可选链接功能,但它需要一个新的加载器,我该如何解决这个问题?
赶紧跑
npm install --save-dev @babel/plugin-proposal-optional-chaining
你应该在 package.json 文件的 devDependencies 中添加这个插件
"devDependencies": { "@babel/plugin-proposal-optional-chaining": "^7.9.0", }
然后运行这个命令
npm install