Skip to content

ConnectionAxis/mvp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MVP-Front-end-demonstrator

GitHub Pages

GitHub Pages is designed to host your personal, organization, or project pages from a GitHub repository.

GitHub Pages config and deploy

The project was built assuming it is hosted at /mvp/.
You can control this with the homepage field in your package.json.

The build folder is ready to be deployed.
To publish it at https://connectionaxis.github.io/mvp, run:

yarn add --dev gh-pages

Add the following script in your package.json.

    // ...
    "scripts": {
      // ...
      "predeploy": "yarn build",
      "deploy": "gh-pages -d build"
    }

Then run:

yarn run deploy

Find out more about deployment here: bit.ly/CRA-deploy