错误情况下的样式路径
解决方案一: 在脚手架中的public文件夹内修改index.html中的导入样式的路径
<link rel="stylesheet" href="./css/bootstrap.css" />改为:
<link rel="stylesheet" href="/css/bootstrap.css" />
解决方案二:
<link rel="stylesheet" href="%PUBLIC_URL%/css/bootstrap.css" />
解决方案三:
const root = ReactDOM.createRoot(document.getElementById('root')); root.render( <HashRouter><App /></HashRouter> );