wangsizhu0504 commented on issue #3081:
URL:
https://github.com/apache/incubator-streampark/issues/3081#issuecomment-1726860524
Thank you for your feedback. According to the screenshot, the branch you are
currently using is 2.1.1, you can try to modify the package.json script under
the streampark-console/streampark-console-webapp/ module, and change the
"build": "cross-env NODE_ENV=production vite build && esno
./build/script/postBuild.ts", to "build": "vite build && esno
./build/script/postBuild.ts", and Deleting the node_modules directory and
trying to recompile will hopefully resolve your issue. If that doesn't solve
the problem, we'll close this issue a bit later.
path: streampark-console/streampark-console-webapp/package.json
before:
```shell
"build": "cross-env NODE_ENV=production vite build && esno
./build/script/postBuild.ts",
```
after
```
"build": "vite build && esno ./build/script/postBuild.ts",
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]