Skip to content

Commit 10ad8a8

Browse files
add comma
1 parent f9c6749 commit 10ad8a8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/console-app/configObject.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as dotenv from "dotenv";
5-
dotenv.config()
5+
dotenv.config();
66

77
/**
88
* This example demonstrates how to construct a configuration object from settings loaded from Azure App Configuration.

examples/console-app/helloworld.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as dotenv from "dotenv";
5-
dotenv.config()
5+
dotenv.config();
66

77
/**
88
* This example retrives all settings with key following pattern "app.settings.*", i.e. starting with "app.settings.".

examples/console-app/helloworld_aad.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as dotenv from "dotenv";
5-
dotenv.config()
5+
dotenv.config();
66

77
/**
88
* This example retrives all settings with key following pattern "app.settings.*", i.e. starting with "app.settings.".

examples/console-app/secretReference.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as dotenv from "dotenv";
5-
dotenv.config()
5+
dotenv.config();
66

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

0 commit comments

Comments
 (0)