尚硅谷老师笔记
项目文件结构。
1.public/index.html中引入样式时将 “./” 改成 “/” (常用)
2.public/index.html中引入样式时将 “./” 改成 “%PUBLIC_URL%” (常用)
3.使用HashRouter
更改后的index.html示例:
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="stylesheet" href="/css/reset.css" />
<title>react</title>
</head>
<body>
<div id="root"></div>
</body>
</html>