关于配置babel-plugin-import报错的坑及解决

作者:wangyile4399 时间:2023-07-02 16:39:01 

配置babel-plugin-import报错的坑

用的是antd design vue生成的项目,按着官网的提示一步一步下来,在配置babel-plugin-import时候发生了报错,一直找了很久没有解决问题

问题

项目可以正常运行,当配置babel-plugin-import时的问题

引入可以正常运行

import Button from “ant-design-vue/lib/button”;
import “ant-design-vue/dist/antd.css”;

改成 import { Button } from ‘ant-design-vue’ 时就报错了,所以肯定是配置的问题

报错内容

./node_modules/antd/lib/button/style/index.less (./node_modules/css-loader??ref–6-oneOf-3-1!./node_modules/postcss-loader/src??postcss!./node_modules/less-loader/dist/cjs.js!./node_modules/antd/lib/button/style/index.less)

// https://github.com/ant-design/ant-motion/issues/44
.bezierEasingMixin();

一直以为是less和less-loader的问题,反反复复弄了好久没有办法。

后来发现是配置的问题,被官网坑了

关于配置babel-plugin-import报错的坑及解决

因为用的是vue3.x,所以用了下面的配置方案,style设置为true,所以就发生了报错

错误原因

style设置为true就会报错

解决方案

style设置为“css”

所以我把style设置了上面的css,然后就好了,真的太相信官网的了以为都是没有错的,没想到坑了我8个小时。

babel-plugin-import配置babel按需引入antd模块报错.bezierEasingMixin()

安装yarn add babel-plugin-import

实现按需加载组件代码和样式的babel插件

下载babel-plugin-import插件,然后在webpack.config.dev.js中的plugins添加配置

{
           test: /\.(js|mjs|jsx|ts|tsx)$/,
           include: paths.appSrc,
           loader: require.resolve('babel-loader'),
           options: {
             customize: require.resolve(
               'babel-preset-react-app/webpack-overrides'
             ),

plugins: [
               [
                 require.resolve('babel-plugin-named-asset-import'),
                 {
                   loaderMap: {
                     svg: {
                       ReactComponent: '@svgr/webpack?-prettier,-svgo![path]',
                     },
                   },
                 },
               ],
               ['import',{libraryName:'antd',style:true}],
             ],
             // This is a feature of `babel-loader` for webpack (not Babel itself).
             // It enables caching results in ./node_modules/.cache/babel-loader/
             // directory for faster rebuilds.
             cacheDirectory: true,
             // Don't waste time on Gzipping the cache
             cacheCompression: false,
           },
         },

重启项目后报错:

关于配置babel-plugin-import报错的坑及解决

打开项目package.json发现less版本是^3.0.4

解决方案

将less版本降到3.0以下 比如安装 2.7.3版本。

两种方式:

1.yarn add less@^2.7.3  

2.打开项目的package.json 找到dependencies下面的less 将其版本改为  "2.7.3"   然后 yarn install

来源:https://blog.csdn.net/wangyile4399/article/details/89677575

标签:配置,babel-plugin-import,报错
0
投稿

猜你喜欢

  • python 列表输出重复值以及对应的角标方法

    2021-06-19 13:29:57
  • 6行Python代码实现进度条效果(Progress、tqdm、alive-progress​​​​​​​和PySimpleGUI库)

    2022-09-15 16:00:46
  • python实现下载整个ftp目录的方法

    2023-01-31 01:45:17
  • ASP中使用存储过程介绍

    2008-10-10 12:10:00
  • sql server 交集,差集的用法详解

    2024-01-23 03:44:08
  • win10下安装Go和Goland的详细教程

    2024-02-12 10:57:16
  • Python urlopen()和urlretrieve()用法解析

    2022-02-10 04:47:30
  • 使用JavaScript获取地址栏参数的方法

    2024-04-28 10:18:25
  • python标准库os库的函数介绍

    2022-02-26 09:57:15
  • Python3逻辑运算符与成员运算符

    2021-03-29 18:59:14
  • Python中Timedelta转换为Int或Float方式

    2021-01-24 19:46:41
  • 如何解决MySQL的客户端不支持鉴定协议

    2008-11-27 17:10:00
  • python bmp转换为jpg 并删除原图的方法

    2023-03-12 02:48:50
  • Python获取网络图片和视频的示例代码

    2023-06-24 08:37:58
  • window.showModalDialog使用手册

    2024-04-18 09:48:28
  • 13个你可能未使用过的Python特性分享

    2021-03-07 19:14:37
  • 手把手教你利用opencv实现人脸识别功能(附源码+文档)

    2022-01-24 23:55:37
  • 解决python 找不到module的问题

    2022-08-05 07:33:25
  • 通俗易懂了解Python装饰器原理

    2021-07-18 13:48:20
  • python 为什么说eval要慎用

    2022-05-01 17:38:49
  • asp之家 网络编程 m.aspxhome.com