thebetterjort

Results 8 comments of thebetterjort

It appears my uBlock pop up blocker was on. Hmmm, maybe serving these assets locally would prevent the popup blocker from interfering?

Where are you on this? I can take a look at RCTInputAccessoryView, but not sure if you are doing admin tasks or TextInput ;)

Ya I looked at this. I don’t have any idea how to handle. Any tips?

Never tried to get it working.

commonjs2 has been depreciated. Looks like gatsby team moved to commonjs3 and it has broken this.

Thanks I'll see what In do

FROM node:8 ENV NODE_ENV development WORKDIR /home/node/tmp COPY package.json /home/node/tmp/package.json RUN npm config set strict-ssl false && NODE_TLS_REJECT_UNAUTHORIZED=0 npm install

version: "2" services: dev: build: ./ working_dir: /home/node/app environment: - NODE_ENV=development volumes: - ./:/home/node/app ports: - "3000:3000" command: bash -c "cp -r ../tmp/node_modules . && npm run dev"