From 184ddc6209d7cd17d0c64b6a7f34a231374cf739 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 27 Aug 2022 10:29:50 +0200 Subject: [PATCH] Bugfix/fix missing assets in local development (#1194) * Fix missing assets in local development * Update changelog --- CHANGELOG.md | 4 ++++ apps/client/proxy.conf.json | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef7b7f654..6bafcdcc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved the language localization for German (`de`) +### Fixed + +- Fixed the missing assets during the local development + ## 1.183.0 - 24.08.2022 ### Added diff --git a/apps/client/proxy.conf.json b/apps/client/proxy.conf.json index 62a1e7b76..9ad19ddba 100644 --- a/apps/client/proxy.conf.json +++ b/apps/client/proxy.conf.json @@ -2,5 +2,13 @@ "/api": { "target": "http://localhost:3333", "secure": false + }, + "/assets": { + "target": "http://localhost:3333", + "secure": false + }, + "/ionicons": { + "target": "http://localhost:3333", + "secure": false } }