Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit f98b036

Browse files
committed
chore: use "prod" by default
1 parent c16c3e2 commit f98b036

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* global process */
22

33
module.exports = (() => {
4-
const env = process.env.APPENV || "dev";
4+
const env = process.env.APPENV || "prod";
55

6-
console.info(`APPENV: "${env}"`);
6+
console.log(`APPENV: "${env}"`);
77

88
// for security reason don't let to require any arbitrary file defined in process.env
99
if (["prod", "dev"].indexOf(env) < 0) {

0 commit comments

Comments
 (0)