Update development server port

This commit is contained in:
Manuel Bouza
2019-12-10 18:37:54 +01:00
parent a351337dbb
commit d9a2617875

View File

@@ -5,7 +5,7 @@ const baseURL = subdomain => {
if (process.env.NODE_ENV === "production") { if (process.env.NODE_ENV === "production") {
return `https://${encodeURIComponent(subdomain)}.mocoapp.com/api/browser_extensions` return `https://${encodeURIComponent(subdomain)}.mocoapp.com/api/browser_extensions`
} else { } else {
return `http://${encodeURIComponent(subdomain)}.mocoapp.localhost:3001/api/browser_extensions` return `http://${encodeURIComponent(subdomain)}.mocoapp.localhost:3000/api/browser_extensions`
} }
} }