documentation icon indicating copy to clipboard operation
documentation copied to clipboard

document how to connect to local api servers

Open xenoterracide opened this issue 8 years ago • 2 comments

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 avatar Aug 23 '16 03:08 xenoterracide

@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.

EisenbergEffect avatar Oct 03 '16 05:10 EisenbergEffect

@bigopon

async triageQuestion(id) =>{
 respondSameDay()
 let response = await getResponseFromOP( { timeout : 6years } )
 if(!response) {
    closeQuestion(id,randomReason())
 }
}

Alexander-Taran avatar May 23 '22 20:05 Alexander-Taran