我是靠谱客的博主 和谐鸡翅,最近开发中收集的这篇文章主要介绍Error: Unknown option: .preset的解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

  • 有时候在使用webpack打包项目的时候会出先Error: Unknown option: .preset这个错误
ERROR in ./src/index.js
Module build failed (from ./node_modules/babel-loader/lib/index.js):
Error: Unknown option: .preset. Check out https://babeljs.io/docs/en/babel-core/#options for more information about options.
    at throwUnknownError (/Users/sataniya/Desktop/Gobang/node_modules/@babel/core/lib/config/validation/options.js:123:27)
    at /Users/sataniya/Desktop/Gobang/node_modules/@babel/core/lib/config/validation/options.js:108:5
    at Array.forEach (<anonymous>)
    at validateNested (/Users/sataniya/Desktop/Gobang/node_modules/@babel/core/lib/config/validation/options.js:84:21)
    at validate (/Users/sataniya/Desktop/Gobang/node_modules/@babel/core/lib/config/validation/options.js:75:10)
    at /Users/sataniya/Desktop/Gobang/node_modules/@babel/core/lib/config/config-chain.js:174:34
    at cachedFunction (/Users/sataniya/Desktop/Gobang/node_modules/@babel/core/lib/config/caching.js:62:27)
    at cachedFunction.next (<anonymous>)
    at evaluateSync (/Users/sataniya/Desktop/Gobang/node_modules/gensync/index.js:244:28)
    at sync (/Users/sataniya/Desktop/Gobang/node_modules/gensync/index.js:84:14)
ℹ 「wdm」: Failed to compile.

在这里插入图片描述

  • 这个时候要检查.babelrc文件,因为很可能presets写成了preset或者其他
// .babelrc
{
    "presets": ["@babel/react"] // 这里必须是 presets
}

最后

以上就是和谐鸡翅为你收集整理的Error: Unknown option: .preset的解决方案的全部内容,希望文章能够帮你解决Error: Unknown option: .preset的解决方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部