Browse Source

update target in proxy to work with api in locahost

pull/1875/head
francisco 2 years ago
parent
commit
5d8fb81ce5
  1. 6
      CHANGELOG.md
  2. 6
      apps/client/proxy.conf.json

6
CHANGELOG.md

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Changed
- Update target in `proxy.conf.json` to work with backend locally
## 1.257.0 - 2023-04-18
### Added

6
apps/client/proxy.conf.json

@ -1,14 +1,14 @@
{
"/api": {
"target": "http://localhost:3333",
"target": "http://0.0.0.0:3333",
"secure": false
},
"/assets": {
"target": "http://localhost:3333",
"target": "http://0.0.0.0:3333",
"secure": false
},
"/ionicons": {
"target": "http://localhost:3333",
"target": "http://0.0.0.0:3333",
"secure": false
}
}

Loading…
Cancel
Save