patch frontend api endpoint in config
This commit is contained in:
parent
2f9cb987ba
commit
00757ac2d2
2 changed files with 1 additions and 6 deletions
|
@ -4,7 +4,7 @@ const env = runtimeEnv();
|
|||
const production = {
|
||||
apiAddress: 'https://node-go-api.herokuapp.com/api/v1',
|
||||
endpoint: 'https://play-node-go.herokuapp.com',
|
||||
authAddress: 'https://node-go.herokuapp.com/auth',
|
||||
authAddress: 'https://node-go-api.herokuapp.com/auth',
|
||||
socketAddress: 'https://node-go-api.herokuapp.com'
|
||||
}
|
||||
|
||||
|
|
|
@ -28,11 +28,6 @@ const corsOptions = {
|
|||
|
||||
app.options('*', cors(corsOptions));
|
||||
app.use('*', cors(corsOptions));
|
||||
app.use((req, res, next) => {
|
||||
res.header("Access-Control-Allow-Origin", allowedOrigin);
|
||||
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
|
||||
next();
|
||||
});
|
||||
|
||||
// disable logging for tests
|
||||
if (process.env.NODE_ENV !== 'test') app.use(logger('dev'));
|
||||
|
|
Loading…
Reference in a new issue