-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
26 lines (26 loc) · 925 Bytes
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
const { MedlyReactApp } = require('@medlypharmacy/medly-projen');
const project = new MedlyReactApp({
defaultReleaseBranch: 'main',
devDeps: ['@medlypharmacy/medly-projen'],
name: 'book-my-show-app',
stateManager: 'redux',
webpackConfig: {
port: 8090,
proxies: {
common: {
'/api/satellite': {
target: 'https://api-gw.dev-medly.io',
changeOrigin: true
},
'/api': {
target: 'http://localhost:9000',
secure: false
}
}
}
}
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// packageName: undefined, /* The "name" in package.json. */
});
project.synth();