From fc6091293fbb74129a31a70c88acd7bf21347c51 Mon Sep 17 00:00:00 2001 From: Ali Mihandoost Date: Sat, 11 Feb 2023 13:22:40 +0330 Subject: [PATCH] feat(com-pwa): add cdn to config --- uniquely/com-pwa/res/config.js | 1 + uniquely/com-pwa/src/config.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/uniquely/com-pwa/res/config.js b/uniquely/com-pwa/res/config.js index 27d465bf6..3681d1183 100644 --- a/uniquely/com-pwa/res/config.js +++ b/uniquely/com-pwa/res/config.js @@ -1,4 +1,5 @@ window.appConfig = { api: '/api/v0', + cdn: '/image/', token: '3584fd6c82b5b76568a7f770846be94af9b7a879eb2274f2c0121ccc58d112ee', }; diff --git a/uniquely/com-pwa/src/config.ts b/uniquely/com-pwa/src/config.ts index f5a517ff2..16a208072 100644 --- a/uniquely/com-pwa/src/config.ts +++ b/uniquely/com-pwa/src/config.ts @@ -2,5 +2,6 @@ import {getConfKey} from '@alwatr/pwa-helper/config.js'; export const config = { api: getConfKey('api'), + cdn: getConfKey('cdn'), token: getConfKey('token'), };