We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4bae12 commit a753513Copy full SHA for a753513
lib/module.js
@@ -10,7 +10,10 @@ module.exports = function kenticocloud (moduleOptions) {
10
enablePreviewMode: process.env.KENTICOCLOUD_ENABLEPREVIEWMODE || false,
11
defaultLanguage: process.env.KENTICOCLOUD_DEFAULTLANGUAGE || null,
12
retryAttempts: process.env.KENTICOCLOUD_RETRYATTEMPTS || null,
13
- baseUrl: process.env.baseUrl || null,
+ baseUrl: process.env.KENTICOCLOUD_BASEURL || null,
14
+ proxyUrl: process.env.KENTICOCLOUD_PROXYURL || null,
15
+ securedApiKey: process.env.KENTICOCLOUD_SECUREDAPIKEY || null,
16
+ enableSecuredMode: process.env.KENTICOCLOUD_ENABLESECUREDMODE || false,
17
config: {
18
environment: this.options.dev ? 'development' : 'production'
19
}
0 commit comments