You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support relative asset paths for special case (facebook#1489)
* Fix paths in CSS files when homepage is set to "./"
In the production build, ExtractTextPlugin is used to generate a separate CSS file instead of injecting style through JavaScript. This plugin does not work well by default with nested output structure. To fix it, we give it a relative publicPath pointing to the build folder.
* Add section in README to explain how to make builds deployable anywhere
* Apply review requested change
* Apply review changes 2
Copy file name to clipboardexpand all lines: packages/react-scripts/template/README.md
+11
Original file line number
Diff line number
Diff line change
@@ -1070,6 +1070,17 @@ To override this, specify the `homepage` in your `package.json`, for example:
1070
1070
1071
1071
This will let Create React App correctly infer the root path to use in the generated HTML file.
1072
1072
1073
+
#### Serving the Same Build from Different Paths
1074
+
1075
+
>Note: this feature is available with `[email protected]` and higher.
1076
+
1077
+
If you are not using the HTML5 `pushState` history API or not using client-side routing at all, it is unnecessary to specify the URL from which your app will be served. Instead, you can put this in your `package.json`:
1078
+
1079
+
```js
1080
+
"homepage":".",
1081
+
```
1082
+
1083
+
This will make sure that all the asset paths are relative to `index.html`. You will then be able to move your app from `http://mywebsite.com` to `http://mywebsite.com/relativepath` or even `http://mywebsite.com/relative/path` without having to rebuild it.
0 commit comments