wangsizhu0504 commented on issue #2843:
URL:
https://github.com/apache/incubator-streampark/issues/2843#issuecomment-1628741924
@onlyotdn We have located the cause of the error, and it does cause a blank
page bug after compilation. The temporary solution is to modify
incubator-streampark/streampark-console/streampark-console-service/pom.xml#L605
```xml
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v16.16.0</nodeVersion>
<npmVersion>8.11.0</npmVersion>
</configuration>
</execution>
<execution>
<id>install</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>build</id>
<goals>
<goal>pnpm</goal>
</goals>
<configuration>
<arguments>run build:no-cache</arguments>
</configuration>
</execution>
</executions>
```
Reference PR: https://github.com/apache/incubator-streampark/pull/2845
--
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]