我的 Vue2 项目是用 Vue CLI 搭建的,使用的 @vue/cli-service 是 4.5.x 版本。

最近在项目中引入了 mermaid 搭建流程图,但是引入依赖启动项目后报错:

Module parse failed: Unexpected token (239:72)
2024-07-02 14:59:36 You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
2024-07-02 14:59:36 | const hasKatex = (text) => {
2024-07-02 14:59:36 |   var _a;
2024-07-02 14:59:36 >   return (((_a = text.match(katexRegex)) == null ? void 0 : _a.length) ?? 0) > 0;
2024-07-02 14:59:36 | };
2024-07-02 14:59:36 | const calculateMathMLDimensions = async (text, config2) => {
2024-07-02 14:59:36 
2024-07-02 14:59:36  @ ./node_modules/.pnpm/mermaid@10.9.1/node_modules/mermaid/dist/mermaid.core.mjs 2:0-42 12:0-14:2

研究过后,发现是 ?? 操作符不兼容,这个可以用 babel 配置解决。

先安装依赖:

pnpm add -D @babel/plugin-proposal-nullish-coalescing-operator @babel/plugin-proposal-optional-chaining

接着修改 babel 配置,plugins 加上这俩:

module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ],
  plugins: [
    '@babel/plugin-proposal-optional-chaining',
    '@babel/plugin-proposal-nullish-coalescing-operator'
  ]
}

最后修改 vue.config.js,将 mermaid 加入到 transpileDependencies

transpileDependencies: ['mermaid'],

重新启动项目就不会报错了

GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5 * chore: fix link broken Signed-off-by: snoppy <michaleli@foxmail.com> * Update packages/template-compiler/README.md [skip ci] --------- Signed-off-by: snoppy <michaleli@foxmail.com> Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891 Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐