Static resources not loading on GitHub Pages

前端 未结 3 1150
情歌与酒
情歌与酒 2021-02-02 08:44

I have created a website and am trying to host it on git hub pages. My site is available at -

http://.github.io//

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-02 09:07

    If your project is a React app created with Create React App, set the homepage in your package.json, for example:

    "homepage": "/",
    

    If you're not using client-side routing, use this:

    "homepage": ".",
    

    See https://create-react-app.dev/docs/deployment/#building-for-relative-paths.

提交回复
热议问题