lilithyang2018

Results 17 comments of lilithyang2018

@ClarkXia 请问在ice3里如何正确配置fallback? 在ice.config.mts里配置如下 ![webpack](https://github.com/alibaba/ice/assets/39897706/0d679350-112e-4ed0-b14a-57c6723c8f4d) 启动时会报如下错误 ![resolve](https://github.com/alibaba/ice/assets/39897706/0920b155-1fe4-48fe-860e-115bfeec7056) 如果使用@ice/webpack-config,又该如何配置呢

![build-plugin-alt](https://github.com/alibaba/lowcode-engine/assets/39897706/da1de6b0-e3a6-42b4-86b3-69ddb440dca4) ![plugin-code-editor](https://github.com/alibaba/lowcode-engine/assets/39897706/377c5178-affc-4d58-ae15-db99adbbb987) 新发现的 @alilc/build-plugin-alt和@alilc/lowcode-plugin-code-editor之间的循环依赖

+1 确实需要清空权限的功能 @ClarkXia @luhc228 请问这个功能是否有人跟进 ?

开发环境要求多个server共用一个域名 所以才有此一问

个人解决方案,publicPath改回'/',在document.tsx中放弃使用ice提供的Links和Scripts,改为手动注入相对路径的link和script ![solution](https://github.com/alibaba/ice/assets/39897706/78980f80-f8fb-4522-ba54-adcbdd592a62)

```javascript const path = require('path'); const { chdir, cwd } = require('process'); const rootDir = cwd(); try { ... } finally { chdir(path.dirname(rootDir)); } ``` @caoccao like this ?

@caoccao it seems that the V8FileExecutor does not release the js file after NodeRuntime is closed, so the file is always occupied by the java process. any suggestions ?

ok, i'll try V8StringExecutor instead