backend-manager 3.2.121 → 3.2.122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/manager/index.js +1 -1
package/package.json
CHANGED
package/src/manager/index.js
CHANGED
|
@@ -101,7 +101,7 @@ Manager.prototype.init = function (exporter, options) {
|
|
|
101
101
|
// Load basic config
|
|
102
102
|
requireJSON5(self.project.backendManagerConfigPath),
|
|
103
103
|
// Load ENV config as a fallback
|
|
104
|
-
requireJSON5(path.resolve(self.cwd, '.runtimeconfig.json'),
|
|
104
|
+
requireJSON5(path.resolve(self.cwd, '.runtimeconfig.json'), true),
|
|
105
105
|
// Finally, load the functions config
|
|
106
106
|
self.libraries.functions
|
|
107
107
|
? self.libraries.functions.config()
|