无法运行 build react include ckeditor5

问题描述 投票:0回答:0

我有一个 React 使用

ckeditor5
。 在开发时间,一切都很好。

但是我不能

run build

这是

package.json

{
  "name": "frontend",
  "private": true,
  "version": "0.0.0",
  "type": "module",
  "scripts": {
    "dev": "vite",
    "build": "vite build",
    "preview": "vite preview"
  },
  "dependencies": {
    "@ckeditor/ckeditor5-react": "^5.1.0",
    "@fortawesome/fontawesome-svg-core": "^6.2.1",
    "@fortawesome/free-regular-svg-icons": "^6.2.1",
    "@fortawesome/free-solid-svg-icons": "^6.2.1",
    "@fortawesome/react-fontawesome": "^0.2.0",
    "@reduxjs/toolkit": "^1.9.3",
    "axios": "^1.3.2",
    "ckeditor5-custom-build": "file:ckeditor5",
    "classnames": "^2.3.2",
    "eslint": "^8.37.0",
    "eslint-config-react-app": "^7.0.1",
    "file": "^0.2.2",
    "js-cookie": "^3.0.1",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-redux": "^8.0.5",
    "react-router-dom": "^6.8.1",
    "react-toastify": "^9.1.1",
    "socket.io-client": "^4.6.1"
  },
  "devDependencies": {
    "@types/react": "^18.0.28",
    "@types/react-dom": "^18.0.11",
    "@vitejs/plugin-react": "^3.1.0",
    "sass": "^1.59.3",
    "vite": "^4.2.0",
    "vite-plugin-eslint": "^1.8.1"
  }
}

我得到的错误在

ckeditor

我尝试

npm run build --fix
喜欢日志建议:

但它不起作用。

我该如何解决?

reactjs npm build vite ckeditor5
© www.soinside.com 2019 - 2024. All rights reserved.