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/), 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). 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 ## 1.257.0 - 2023-04-18
### Added ### Added

6
apps/client/proxy.conf.json

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

Loading…
Cancel
Save