A Jupyter notebook exported to HTML produces the error message `Uncaught ReferenceError: require is not defined` in Chrome when there is no internet connection. The plot does not show, there is only blank space where it should be. reproducable example: ``` import plotly.express as px iris = px.data.iris() px.scatter(iris, x="sepal_width", y="sepal_length", color="petal_length") ``` and after: `jupyter nbconvert --to html ...` Exporting the plot directly with `fig.write(...)` works fine, both online and offline.