allow origin all

This commit is contained in:
vigdorov
2020-07-03 21:27:18 +03:00
parent a65e3cd53c
commit 6ca9059dc4
3 changed files with 9 additions and 4 deletions

View File

@ -1,2 +1,3 @@
export const DB_NAME = '/store-service';
export const MONGO_URL = `mongodb://localhost:27017${DB_NAME}`;
export const ALLOW_ORIGIN_ALL: [string, string] = ['Access-Control-Allow-Origin', '*'];