Browse Source

Bugfix/fix missing assets in local development (#1194)

* Fix missing assets in local development

* Update changelog
pull/1196/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
184ddc6209
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 8
      apps/client/proxy.conf.json

4
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`) - Improved the language localization for German (`de`)
### Fixed
- Fixed the missing assets during the local development
## 1.183.0 - 24.08.2022 ## 1.183.0 - 24.08.2022
### Added ### Added

8
apps/client/proxy.conf.json

@ -2,5 +2,13 @@
"/api": { "/api": {
"target": "http://localhost:3333", "target": "http://localhost:3333",
"secure": false "secure": false
},
"/assets": {
"target": "http://localhost:3333",
"secure": false
},
"/ionicons": {
"target": "http://localhost:3333",
"secure": false
} }
} }

Loading…
Cancel
Save