You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case of using scripts = inline_script(include_str!("echarts.min.js")), if the js file gets big, the program becomes SLOW to start.
If we use absolute path to replace <script src="echarts.min.js"></script>, there will be no such problem.
The text was updated successfully, but these errors were encountered:
coolit
changed the title
support for local JS src in html needed
use absolute path instead of inline_script for big JS files
Oct 10, 2019
In case of using
scripts = inline_script(include_str!("echarts.min.js"))
, if the js file gets big, the program becomes SLOW to start.If we use absolute path to replace
<script src="echarts.min.js"></script>
, there will be no such problem.The text was updated successfully, but these errors were encountered: