Skip to content

Commit

Permalink
Document exclusion of 'transaction' dependency for one-time autoselec…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
brunovjk committed Apr 28, 2024
2 parents 160e277 + 223672b commit 9c70d9d
Show file tree
Hide file tree
Showing 20 changed files with 627 additions and 165 deletions.
16 changes: 6 additions & 10 deletions config/webpack/webpack.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,12 @@ const getConfiguration = (environment: Environment): Promise<Configuration> =>
process.env.USE_WEB_PROXY === 'false'
? {}
: {
proxy: {
// eslint-disable-next-line @typescript-eslint/naming-convention
'/api': 'http://[::1]:9000',
// eslint-disable-next-line @typescript-eslint/naming-convention
'/staging': 'http://[::1]:9000',
// eslint-disable-next-line @typescript-eslint/naming-convention
'/chat-attachments': 'http://[::1]:9000',
// eslint-disable-next-line @typescript-eslint/naming-convention
'/receipts': 'http://[::1]:9000',
},
proxy: [
{
context: ['/api', '/staging', '/chat-attachments', '/receipts'],
target: 'http://[::1]:9000',
},
],
};

const baseConfig = getCommonConfiguration(environment);
Expand Down
Loading

0 comments on commit 9c70d9d

Please sign in to comment.