This repository has been archived on 2022-08-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

7 lines
164 B
JavaScript

// @flow
const env = typeof window !== "undefined" ? window.env : process.env;
export function cdnPath(path: string): string {
return `${env.CDN_URL}${path}`;
}