Use correct default origin

This commit is contained in:
Michael Jackson 2019-01-14 16:03:00 -08:00
parent 1cd8a5490d
commit 8cc9273fdc
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import invariant from 'invariant';
export const npmRegistryURL =
process.env.NPM_REGISTRY_URL || 'https://registry.npmjs.org';
export const origin = process.env.ORIGIN || 'http://localhost:5000';
export const origin = process.env.ORIGIN || 'https://unpkg.com';
export const secretKey = process.env.SECRET_KEY;