你好,我有一个 reactjs 应用程序,我建立我的项目与下面的命令
npm build
这是我的 package.json
文件:
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"},
在构建后,我有文件夹与构建文件和 index.html 文件 但是 html 中的所有路径都是绝对路径,我想用相对路径来构建
例如(index.html) : 现在我有了:
<script type="text/javascript" src="/static/js/main.af2bdfd5.js"></script> <link href="/static/css/main.097da2df.css" rel="stylesheet"> <link rel="shortcut icon" href="/favicon.ico">
我要这个:
<script type="text/javascript" src="./static/js/main.af2bdfd5.js"></script> <link href="./static/css/main.097da2df.css" rel="stylesheet"> <link rel="shortcut icon" href="./favicon.ico">