You are using a relative path to describe path of the bundle.js in your index.html.
You should use absolute path for bundle.js in your index.html
Absolute path contains the root directory and all other subdirectories in which a file or folder is contained.
If it's in the same path with your index.html.
eg.
public/index.html
public/bundle.js
This would solve your problem.
<script src="/bundle.js"></script>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…