plotly / dash-component-boilerplate

Get started creating your own Dash components here.
269 stars 182 forks source link

output.js path problem in the index.html file #156

Open mohsenhadadi1986 opened 1 year ago

mohsenhadadi1986 commented 1 year ago

Hello,

I hope this message finds you well. I wanted to share a quick update regarding an issue I encountered while trying to create a custom component with this repository.

During the development process, I noticed that the index.html file contained an incorrect path for the output.js file. This misconfiguration caused the application to constantly reload, leading to instability during development.

To resolve this issue, I have corrected the index.html file as follows:

<!doctype>
<html>
<head>
    <title>cits_chart_component</title>
</head>
<body>
    <div id='root'></div>
    <script src="./output.js"></script>
</body>
</html>

By including the correct path to the output.js file, the reloading issue has been resolved, and the application is now functioning smoothly in development mode.

I apologize for any inconvenience this may have caused. Thank you for your understanding, and I wish you a pleasant day ahead.

best, Mohsen