documentation
documentation copied to clipboard
document how to connect to local api servers
I feel like for local development having a server that is served on another port is common, however production may quite frequently require quite a different configuration.
for webpack the best option seems to be proxy, it took me a while to figure out how to even provide this configuration http://stackoverflow.com/q/39030700/206466
@xenoterracide Would you consider submitting a pull request to add this to our webpack docs? The document is in the docs folder of the framework library. This would be a great way to contribute to the project.
@bigopon
async triageQuestion(id) =>{
respondSameDay()
let response = await getResponseFromOP( { timeout : 6years } )
if(!response) {
closeQuestion(id,randomReason())
}
}