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 26ec9cc commit 7658d56Copy full SHA for 7658d56
adminforth/commands/createCustomComponent/configLoader.js
@@ -2,7 +2,10 @@ import fs from 'fs/promises';
2
import path from 'path';
3
import chalk from 'chalk';
4
import jiti from 'jiti';
5
+import dotenv from "dotenv";
6
7
+dotenv.config({ path: '.env.local', override: true });
8
+dotenv.config({ path: '.env', override: true });
9
10
export async function loadAdminForthConfig() {
11
const configFileName = 'index.ts';
0 commit comments