Upgrade gas-client (#164)

Uses latest UMD build for gas-client and externalizes the package to further reduce client bundle size
This commit is contained in:
Elisha Nuchi
2022-12-25 01:15:21 -05:00
committed by GitHub
parent 4718f4b870
commit 957367366b
4 changed files with 49 additions and 64 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import * as publicServerFunctions from '../../server';
const { serverFunctions } = new GASClient<typeof publicServerFunctions>({
// this is necessary for local development but will be ignored in production
allowedDevelopmentDomains: origin =>
allowedDevelopmentDomains: (origin) =>
/https:\/\/.*\.googleusercontent\.com$/.test(origin),
});