• 记一次webpack迁移至vite【antd3(4)】


    本文仅记录一下现有项目由webpack迁移到vite踩到的坑,至于vite的优缺点就不在此赘述了。具体可查看Vite 官方中文文档

    环境

    • webpack
    • React
    • antd3(4)
    • 后台管理系统(兼容性要求没那么高)

    迁移方式

    1. 使用wp2vite自动化工具(推荐)
      一键让使用webpack来进行开发和构建的项目支持使用vite来进行开发和构建。它会自动帮你生成入口文件、分析alias生成viteconfig配置、以及添加相关依赖修改package.json配置等。生产后再按自己需要修改下viteconfig配置。
    2. 自己手动配置
      • 根目录新增index.html 使用module引入入口文件

        <script type="module" src="/src/index.tsx"></script>
        
        • 1
      • 安装相关依赖

        yarn add -D vite @vitejs/plugin-legacy vite-plugin-importer @vitejs/plugin-react-refresh @rollup/plugin-babel sass
        
        • 1
      • 配置package.json,添加vite相关启动命令

      • 配置vite.config.js具体可参照配置 Vite,以下为antd3迁移时需要注意的点。因为antd3库本身代码或者其内部依赖的一些问题,例如:虽然vite已经兼容了rollup的commonjs插件功能,支持CommonJS modules转为ES6;但是es文件中使用到require,rollup会认为已经是es而不会去做处理;而esbuild没这问题。因此我们可以开发时使用es文件,生产环境时使用commonjs引入让其都去处理一遍。

        // @see https://cn.vitejs.dev/config/
        /* antd3需引入start */
        import usePluginImport from 'vite-plugin-importer';
        import requireEsmPlugin from 'rollup-plugin-requiretoimport';
        /* antd3需引入end */
        //+
            usePluginImport({
                libraryName: 'antd', // todo please input your babel-plugin-import config
                libraryDirectory: mode === 'production' ? 'lib' : 'lib',
                style: 'css',
            }),
            requireEsmPlugin(),// antd3需引入    
        //+
        
        • 1
        • 2
        • 3
        • 4
        • 5
        • 6
        • 7
        • 8
        • 9
        • 10
        • 11
        • 12
        • 13
      • 配置tsconfig.json

        //- "target": "es5",
         "target": "esnext",
        
        
        • 1
        • 2
        • 3
      • 如果使用了装饰器需引入@rollup/plugin-babel处理,不然会出现数据不更新的现象

            babel({
              extensions: ['.ts', '.tsx'],
              plugins: [
                ['@babel/plugin-proposal-decorators', { legacy: true }],
                ['@babel/plugin-proposal-class-properties', { loose: true }]
              ]
            })
        
        • 1
        • 2
        • 3
        • 4
        • 5
        • 6
        • 7

    错误处理

    1. [vite] Internal server error: [BABEL] unknown: Using babel-preset-react-app requires that you specify NODE_ENV or environment variables. Valid values are "development", "test", and "production". Instead, received: undefined.

      提示是babel的这个react-app预置需要用到NODE_ENV,vite中没这个环境变量了,所以undefined了。那我们就不用这个预置,移除babel.config.json配置中的 presets “react-app”

    2. [vite] Internal server error: Top-level selectors may not contain the parent selector "&".

      sass语法错误,父选择器需要用在{}内;在父选择器外层加上大括号即可

        - .border-1px &::after{
        - }
        + .border-1px {
        +    &::after {
        +    }
        +  }
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
    3. 启动服务后打开页面发现vite不停connect进行建立连接,这是由于websocket连接建立的不对

      vite会在客户端注入socket连接代码,连接到本地服务的3000端口,由于我们使用zanproxy代理的原因,已经代理到3000端口,即时在vite的配置项里将hrm这一项配置空字符,vite也会将’:'拼接进去,因此需修改vite源码,移除监听端口
      修改node_modules/vite/dist/client/client.mjs

      -const socketHost = `${__HMR_HOSTNAME__ || location.hostname}:${__HMR_PORT__}`;
      +const socketHost = `${__HMR_HOSTNAME__ || location.hostname}`;
      
      • 1
      • 2
    4. ts报错:ts语法提示类型“ImportMeta”上不存在属性“env”时。

      需要在ts配置项中添加 types": [“vite/client”]

      //tsconfig.json
      {
        "compilerOptions": {
          "types": ["vite/client"],
          }
      }
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
    5. Uncaught TypeError: Failed to resolve module specifier "indexof". Relative references must start with either "/", "./", or "../".

      提示无法解析indexof模块,应该是没有安装,那我们就安装一下该模块

      npm install indexof 
      
      • 1
    6. antd4中引入icon时 通过antd/lib 引入时部分页面会在build后出现报错。修复方式:不指定lib目录,大致原因就是不指定是会走es文件夹,指定了后lib里可能有隐藏的es、commonjs混用的情况。

      /*
      import{
        MinusCircleOutlined,
      } from '@ant-design/icons/lib';
      */
      import{
        MinusCircleOutlined,
      } from '@ant-design/icons';
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
    7. mobx-react报错 node_modules/mobx-react/node_modules/mobx-react-lite/es/utils/assertEnvironment.js:1:9: error: No matching export in "node_modules/mobx/lib/mobx.module.js" for import "makeObservable"

      原因是mobx-react-litemobx版本不匹配。npm安装时mobx-react依赖的mobx-react-lite>=2.2.0,项目的package.json中依赖mobx-react-lite版本为2.2.2满足>=2.2.0要求,mobx-react直接使用外层的mobx-react-lite,因此npm安装没问题。yarn安装时,按照mobx-react-lite>=2.2.0要求会直接在mobx-react/node-modules下安装到最新版本也就是3.2.1版本。3.2.1版本的mobx-react-lite依赖mobx^6.1.0,而我们的mobx版本为固定的5.15.4,缺少makeObservable.咋整,尝试升级mobx发现会造成其它不可预测影响,只能修改下依赖的源码将/node_modules/mobx-react/node_modules/mobx-react-lite/es/utils/assertEnvironment.js文件下的makeObservable相关部分注释掉;(可以做成脚本安装完依赖后执行一下修改即可)

          //import { makeObservable } from "mobx";
          import { useState } from "react";
          if (!useState) {
              throw new Error("mobx-react-lite requires React with Hooks support");
          }
          // if (!makeObservable) {
          //     throw new Error("mobx-react-lite@3 requires mobx at least version 6 to be available");
          // }
          //# sourceMappingURL=assertEnvironment.js.map
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9

    antd3需要特殊处理的点

    1. antd3的icons问题

      因为@ant-design/icons/lib/dist是es转换得到的,所有导出都在exports上,不需要import * as;但是在node_modules/antd/es/icon/index.js我们可以看到其又直接以es方式调用使用了import * as,这里转换后会加上default,隐藏后面遍历时就找不到正确的icon注册了。可以通过下面2种方法进行处理

      • 修改node_modules/antd/es/icon/index.js

        //- import * as allIcons from '@ant-design/icons/lib/dist';
        import allIcons from '@ant-design/icons/lib/dist';
        
        • 1
        • 2
      • 或者修改配置使用esmodule

        // vite.config.js
            //***
              alias: {
                '@ant-design/icons/lib/dist': '@ant-design/icons/lib/index.es.js'
              },
            //***
        
        • 1
        • 2
        • 3
        • 4
        • 5
        • 6
    2. umi/hooks报错
      'CombineService' is not exported by node_modules/@umijs/use-request/lib/types.js, imported by node_modules/@umijs/hooks/es/useFormTable/index.js
      依赖项代码的bug,去types.js里面一看,好家伙,只有"use strict";孤零零的一行在那,没有导出项。所以报了没有导出项;新版本ahook已经修复了改问题,不过由于这里是antd3的,咱也不能随便升级,只能改types.js了。添加如下内容

      // path: node_modules/@umijs/use-request/lib/types.js
      Object.defineProperty(exports, "__esModule", {
          value: true
        });
      
      • 1
      • 2
      • 3
      • 4
    3. 依赖项中的require兼容

      第三点也是最重要的一点,因antd3中很多依赖项的源码中有es、commonjs混着用的情况,所以运行build时会发现总是报require。当你碰到了在你的项目里发现require引用已经搜不到了,build后还报require错误,不用怀疑肯定是某个依赖库中或者依赖库的依赖库中有不规范的地方。需要写个插件去将require引入转换成import,再让rollup去做后续处理。当然你也可以直接下载这个我写的插件rollup-plugin-requiretoimport直接使用

    4. antd3 buildlib中引入
      vitebuild时使用的是rollup处理的,rollupcommonjs插件只能将commonjs转为es,也就是只能处理导出,不会处理require导入,为了避免一些其它错误,可以说使用usePluginImport设置按需加载在生产环境时从lib文件夹获取资源

    注意事项

    1. 环境变量(process.env.REGION)的问题,我们可以通过定义常量的方式进行过渡

      // 定义环境变量
      // package.json
        "scripts": {
          "start:vn": "cross-env APP_ENV=test APP_REGION=vn npm run vite-start",
          "start:th": "cross-env APP_ENV=test APP_REGION=th npm run vite-start",
          "vite-start": "vite",
          "vite-build": "cross-env 
        },
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      // 将环境变量转换为常量
      // vite.config.js
      
        export default ({ mode })=>{
          const define = {
            'process.env.NODE_ENV': JSON.stringify(mode),
            'process.env.APP_ENV': JSON.stringify(process.env.APP_ENV),
            'process.env.APP_REGION': JSON.stringify(process.env.APP_REGION),
          };
          return {
            define
          }
        }
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
        // 统一导出
        // @/utils/index.ts
        export const APP_REGION = process.env.APP_REGION || 'th';
        export const APP_ENV = process.env.APP_ENV || 'test';
        export const SENTRY_RELEASE = process.env.SENTRY_RELEASE || 'dev';
      
      • 1
      • 2
      • 3
      • 4
      • 5

      需注意得是因其只是做静态替换处理,因此不要使用解构const { APP_REGION = 'vn' } = process.env;, 为了方便使用由原来的process.env.REGION直接使用统一变更为导入使用。

      // 使用
      // userComponent.tsx
      import { APP_REGION,APP_ENV } from '@/utils'
      
      • 1
      • 2
      • 3
    2. 不要使用require。图片使用import导入

      import detailIcon from '@/assets/images/detail.png';
      
      • 1

    最后放一张效果对比图

    类别服务启动时间预构建编辑更新时间打包内存打包时间生成文件大小
    vite首次5s,二次启动500ms首次55s,且随着不断缓存时间减少秒热更新5.85G3min16M
    webpack38s14s3.92G2min28M

    最后推荐一个预构建插件vite-plugin-optimize-persist。在我们的业务代码中会有许多动态依赖项,我们一个个去设置到vite的配置optimizeDepsinclude中很麻烦,尤其有的需要设置到具体文件路径而不是只设置到根目录,不设置的话在开发时当第一次加载这些时还是需要等待漫长时间的白屏时间等待其进行预构建。此插件会将动态依赖项自动分析添加到optimizeDepsinclude中,这样别人下载源码第一次运行即使没有缓存也无需等待。
    至此整个迁移完成的差不多了。祝大家玩得愉快

  • 相关阅读:
    React报错之React Hook 'useEffect' is called in function
    ConcurrentHashMap--addCount()
    狂团KtAdmin框架正式免费开源发布,助力独立版SAAS系统快速开发!
    CentOS 7镜像下载 以及 DVD ISO 和 Minimal ISO 等各版本的区别介绍
    NLP - 数据预处理 - 文本按句子进行切分
    毕业季你考虑好去留了吗
    2022年10月下旬acm训练
    物理场仿真教程(一)——Ubuntu下Salome_meca 软件安装
    超全的Python完全版电子书——从基础到爬虫、分析等高级应用,限时下载
    springboot2 --- 基础入门
  • 原文地址:https://blog.csdn.net/a8725585/article/details/127659287