mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
16 lines
389 B
JavaScript
16 lines
389 B
JavaScript
require('@alfresco/adf-cli/tooling').dotenvConfig({ path: process.env.ENV_FILE });
|
|
|
|
const APP_CONFIG_ECM_HOST = process.env.APP_CONFIG_ECM_HOST;
|
|
|
|
module.exports = {
|
|
"/alfresco": {
|
|
"target": APP_CONFIG_ECM_HOST,
|
|
"secure": false,
|
|
"pathRewrite": {
|
|
"^/alfresco/alfresco": ""
|
|
},
|
|
"changeOrigin": true,
|
|
'logLevel': 'debug'
|
|
}
|
|
};
|