Collaborative editing (#1660)

This commit is contained in:
Tom Moor
2021-09-10 22:46:57 -07:00
committed by GitHub
parent 0a998789a3
commit 801f6681ba
144 changed files with 3552 additions and 310 deletions

View File

@@ -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
View 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}`;
}