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
I would like to keep source files of my project in repo and have a CI script that runs npm run build to create a fresh version each time I commit something. The problem is that gitlabs CI expects the served files to be in public folder which is already taken by create-react-app.
Ideally I would change public folder to something else and have the npm run build command output the files to public folder instead of build.
Before I eject - do you know if this is possible without ejecting? Thanks for help
The text was updated successfully, but these errors were encountered:
I am trying to setup gitlab pages deployment.
I would like to keep source files of my project in repo and have a CI script that runs
npm run build
to create a fresh version each time I commit something. The problem is that gitlabs CI expects the served files to be inpublic
folder which is already taken bycreate-react-app
.Ideally I would change
public
folder to something else and have thenpm run build
command output the files topublic
folder instead ofbuild
.Before I eject - do you know if this is possible without ejecting? Thanks for help
The text was updated successfully, but these errors were encountered: