ant design vue pro, webpack.IgnorePlugin

在尝试运行ant design vue pro项目时遇到报错,问题根源在于webpack配置中的IgnorePlugin。通过查阅文档并实施解决方案,可以使用webpack.IgnorePlugin来避免错误,从而成功启动项目。
摘要由CSDN通过智能技术生成

项目场景:

尝试ant design vue pro ,安装好项目run serve报错


问题描述

yarn run v1.22.18
$ vue-cli-service serve
 ERROR  Error loading vue.config.js:
 ERROR  ValidationError: Invalid options object. Ignore Plugin has been initialized using an options object that does not match the API schema.
 - options should be one of these:
   object { resourceRegExp, contextRegExp? } | object { checkResource }


原因分析:

定位到 vue.config.js 中的问题位置 webpack.IgnorePlugin

plugins: [
      // Ignore all locale files of moment.js
      new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
      new webpack.DefinePlugin({
        APP_VERSION: `"${require('./package.json').version}"`,
        GIT_HASH: JSON.stringify(getGitHash()),
        BUILD_DATE: buildDate
      })
    ]

解决方案:

看看帮助文档,然后惯例ctrl+c,ctrl+vwebpack.IgnorePluginicon-default.png?t=M3C8https://webpack.docschina.org/plugins/ignore-plugin/

plugins: [
      // Ignore all locale files of moment.js
      // new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
      new webpack.IgnorePlugin({
        resourceRegExp: /^\.\/locale$/,
        contextRegExp: /moment$/
      }),
      new webpack.DefinePlugin({
        APP_VERSION: `"${require('./package.json').version}"`,
        GIT_HASH: JSON.stringify(getGitHash()),
        BUILD_DATE: buildDate
      })
    ],

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值