We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would seem undefined is not a valid symbol in json, and the debug log-level needed quoting
undefined
Seems strange that what one would assume to be generated JSON isn't actually valid
.reactserverrc { - "routes": "./routes.js" + "routes": "./routes.js", "host": "localhost", "port": 3000, "js-port": 3001, "hot": false, "minify": false, "long-term-caching": false, "compile-only": false, - "js-url": undefined, "https": false, - "https-key": undefined, - "https-cert": undefined, - "https-ca": undefined, - "https-pfx": undefined, - "https-passphrase": undefined, - "log-level": debug, + "log-level": "debug", "env": { "staging": { "port": "4000" }, "production": { "port": "80" } + } }
Changing this file and copying the .gulpfile from the repo as noted in #254 seems make the server work for me.
.gulpfile
The text was updated successfully, but these errors were encountered:
Ouch. Thanks for reporting @DanielFGray.
Sorry, something went wrong.
No branches or pull requests
It would seem
undefined
is not a valid symbol in json, and the debug log-level needed quotingSeems strange that what one would assume to be generated JSON isn't actually valid
Changing this file and copying the
.gulpfile
from the repo as noted in #254 seems make the server work for me.The text was updated successfully, but these errors were encountered: