diff --git a/compiler/webpack.config.js b/compiler/webpack.config.js index 4050b6c0f092346b18b18aa346acd0adf7d79dd4..1220f044b26807b6ce5be748f325e1eac44d22ea 100644 --- a/compiler/webpack.config.js +++ b/compiler/webpack.config.js @@ -152,6 +152,12 @@ function setProjectConfig(envArgs) { if (envArgs.aceManifestPath) { projectConfig.manifestFilePath = envArgs.aceManifestPath; } + if (envArgs.aceProfilePath || process.env.aceProfilePath) { + projectConfig.aceProfilePath = envArgs.aceProfilePath || process.env.aceProfilePath; + } + if (envArgs.aceModuleJsonPath || process.env.aceModuleJsonPath) { + projectConfig.aceModuleJsonPath = envArgs.aceModuleJsonPath || process.env.aceModuleJsonPath; + } } function setReleaseConfig(config) {