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 } }