Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/console-app/configObject.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT license.

import * as dotenv from "dotenv";
dotenv.config()
dotenv.config();

/**
* This example demonstrates how to construct a configuration object from settings loaded from Azure App Configuration.
Expand Down
2 changes: 1 addition & 1 deletion examples/console-app/helloworld.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT license.

import * as dotenv from "dotenv";
dotenv.config()
dotenv.config();

/**
* This example retrives all settings with key following pattern "app.settings.*", i.e. starting with "app.settings.".
Expand Down
2 changes: 1 addition & 1 deletion examples/console-app/helloworld_aad.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT license.

import * as dotenv from "dotenv";
dotenv.config()
dotenv.config();

/**
* This example retrives all settings with key following pattern "app.settings.*", i.e. starting with "app.settings.".
Expand Down
2 changes: 1 addition & 1 deletion examples/console-app/secretReference.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT license.

import * as dotenv from "dotenv";
dotenv.config()
dotenv.config();

/**
* Before you run it, please add a Key Vault reference with key "app.secret" in your App Configuration store.
Expand Down