Collaborative editing (#1660)
This commit is contained in:
@@ -102,6 +102,7 @@ export const RESERVED_SUBDOMAINS = [
|
||||
"mail",
|
||||
"marketing",
|
||||
"mobile",
|
||||
"multiplayer",
|
||||
"new",
|
||||
"news",
|
||||
"newsletter",
|
||||
@@ -111,6 +112,7 @@ export const RESERVED_SUBDOMAINS = [
|
||||
"ns4",
|
||||
"password",
|
||||
"profile",
|
||||
"realtime",
|
||||
"sandbox",
|
||||
"script",
|
||||
"scripts",
|
||||
|
||||
6
shared/utils/urls.js
Normal file
6
shared/utils/urls.js
Normal file
@@ -0,0 +1,6 @@
|
||||
// @flow
|
||||
const env = typeof window !== "undefined" ? window.env : process.env;
|
||||
|
||||
export function cdnPath(path: string): string {
|
||||
return `${env.CDN_URL}${path}`;
|
||||
}
|
||||
Reference in New Issue
Block a user