-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running test gives empty page #8
Comments
I've got the same problem. @dremovd did you found a solution? |
Try copying the files in src\main\resources\view\assets to src\main\resources\view\assets\assets then recompile |
I found the issue, it is because the view are in typescript which needs to be transpiled in javascript.
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>view/assets/**</include>
<include>view/graphics/**</include>
<include>view/*.js</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
|
I tried to run Spring2023Main main from vs code on my Mac.
It looks like working, but the page http://localhost:8888/test.html is empty (test.html is loading, but it renders to an empty page)
test.html content:
https://pastebin.com/a1vcByh6
The text was updated successfully, but these errors were encountered: