Created
May 18, 2017 17:44
-
-
Save josephrace/719bfc7e40f632fd7aa3940ef1ede59e to your computer and use it in GitHub Desktop.
Configuration file for create-react-app on GitLab Pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: node:7.9.0 # change to match your node version | |
cache: | |
paths: | |
- node_modules/ | |
before_script: | |
- npm install | |
test: | |
stage: test | |
script: | |
- CI=true npm test | |
pages: | |
stage: deploy | |
script: | |
- CI=true npm run build | |
- rm -rf public | |
- mv build public | |
artifacts: | |
paths: | |
- public # GitLab pages serve from a 'public' directory | |
only: | |
- master # run on master branch |
This problem happens because CRA is not aware the URL is relative (because it's prefixed by project name). Adding
"homepage": ".",
topackage.json
will make it relative to index.html and fix the problem.
Thanks!
This problem happens because CRA is not aware the URL is relative (because it's prefixed by project name). Adding
"homepage": ".",
topackage.json
will make it relative to index.html and fix the problem.
Totally saved me
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This problem happens because CRA is not aware the URL is relative (because it's prefixed by project name). Adding
"homepage": ".",
topackage.json
will make it relative to index.html and fix the problem.