seada-low-code / lowcode-ecology

lowcode engine antd plugins\setters、pro-components、formily materials
MIT License
163 stars 51 forks source link

启动项目后控制台报错 #43

Closed Andrew-Zn closed 1 year ago

Andrew-Zn commented 1 year ago

下载的最新版本 node 版本:v14.20.0 按照 文档 yarn bootstrap , yarn start 访问localhost:8000 ,页面空白控制台报错

错误信息如下:

image
Immanding commented 1 year ago

重新删掉依赖安装试试

WuShenghui commented 1 year ago

升级lowcode-enginelowcode-engine-ext 为最新版本可解决:

demo/.umirc.ts 文件中

scripts: [
    ...
    'https://alifd.alicdn.com/npm/@alilc/lowcode-engine@1.0.17/dist/js/engine-core.js',
    'https://alifd.alicdn.com/npm/@alilc/lowcode-engine-ext@1.0.5/dist/js/engine-ext.js'
]

修改为

scripts: [
    ...
    'https://alifd.alicdn.com/npm/@alilc/lowcode-engine@latest/dist/js/engine-core.js',
    'https://alifd.alicdn.com/npm/@alilc/lowcode-engine-ext@latest/dist/js/engine-ext.js',
]