This repository was archived by the owner on Apr 11, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
app/src/components/Navbar Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default function Navbar(props: {
1313 const { pathname } = props ;
1414 return (
1515 < div >
16- < Header justify = "between" colorIndex = "neutral" >
16+ < Header justify = "between" >
1717 < Title >
1818 { typeof window !== 'undefined' ?
1919 < StyledLogo src = { LogoImage } alt = "logo" />
Original file line number Diff line number Diff line change 7979 "clean" : " rm -rf app/dist app/build" ,
8080 "setup" : " npm install" ,
8181 "setup:yarn" : " yarn" ,
82- "serve:bundle" : " cross-env NODE_ENV=production PORT=1337 node server.js" ,
82+ "serve:bundle" : " cross-env NODE_ENV=production node server.js" ,
8383 "postinstall" : " npm run deploy"
8484 },
8585 "repository" : {
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const app = express();
2020const isDeveloping = process . env . NODE_ENV !== 'production' ;
2121
2222// Need to set this to your api url
23- const IP = process . env . IP || '0.0.0.0 ' ;
23+ const IP = process . env . IP || 'localhost ' ;
2424const PORT = process . env . PORT || 1337 ;
2525const apiUrl = `${ BASE_URL } graphql` ;
2626
You can’t perform that action at this time.
0 commit comments