Skip to content

Commit

Permalink
Merge pull request #2777 from irontec/PROVIDER-2050-fix-vite-configur…
Browse files Browse the repository at this point in the history
…ation

Fix vite configuration
  • Loading branch information
danigargar authored Sep 20, 2024
2 parents 834ad4c + b219a00 commit d616569
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion web/portal/brand/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default ({ mode }) => {
port: 3000,
proxy: {
'/api': {
target: 'http://backend.ivozprovider.local/',
target: 'https://127.0.0.1/',
changeOrigin: true,
secure: false,
ws: true,
Expand Down
2 changes: 1 addition & 1 deletion web/portal/client/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default ({ mode }) => {
port: 3000,
proxy: {
'/api': {
target: 'http://backend.ivozprovider.local/',
target: 'https://127.0.0.1/',
changeOrigin: true,
secure: false,
ws: true,
Expand Down
2 changes: 1 addition & 1 deletion web/portal/platform/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default ({ mode }) => {
port: 3000,
proxy: {
'/api': {
target: 'http://backend.ivozprovider.local/',
target: 'https://127.0.0.1/',
changeOrigin: true,
secure: false,
ws: true,
Expand Down
2 changes: 1 addition & 1 deletion web/portal/user/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default ({ mode }) => {
port: 3000,
proxy: {
'/api': {
target: 'http://backend.ivozprovider.local/',
target: 'https://127.0.0.1/',
changeOrigin: true,
secure: false,
ws: true,
Expand Down

0 comments on commit d616569

Please sign in to comment.