Carson
Carson
I'll have a look at it this weekend. Hopefully it's something that I can fix and not an animation bug in iOS.
Sorry for the delay, my day job and main project have been taking up a lot of my time lately. I will do my best to see whats going on...
I am sorry for the delay in getting to fix this. I started a business this year and it has taken up all of my time. I would appreciate anyone...
I am currently using this stack in production, hosted on Heroku. The only thing I needed to make it work was adding the config var `NPM_CONFIG_PRODUCTION` to `false` on the...
@kurtzilla I forgot to add that if you use Yarn, you'll have to create a new file in the root of your repo called `.slugignore` and it's contents should be...
@kurtzilla Open the config, and change the environment variable `SERVER_PORT` to just `PORT`. Cheers!
@kurtzilla Are you using a .env file? I would suggest not doing that and adding your environment variables to heroku config. They assign a PORT as an environment variable and...
I understand. How about the console after the deploy. I am assuming that you are seeing an issue of running into it not binding to a port. Grab the output...
Oh! In `src/server/index.js` find ``` const listener = app.listen(config.port, config.host, () => console.log(`Server listening on port ${config.port}`), ); ``` and change it to ``` const listener = app.listen(config.port, () =>...
It doesn't work for me either. A temporary fix I have is to call `Pages.sess("currentPage", 1);` right after you perform the set. Of course replace `Pages` with the name of...