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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
12 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/proxy.conf.json
|
@ -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 |
|
|
|
@ -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 |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|