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.
2 parents 4db0744 + bcf1f4b commit 6e873e9Copy full SHA for 6e873e9
adminforth/commands/createApp/templates/index.ts.hbs
@@ -3,7 +3,10 @@ import AdminForth from 'adminforth';
3
import usersResource from "./resources/adminuser.js";
4
import { fileURLToPath } from 'url';
5
import path from 'path';
6
-
+import dotenv from "dotenv";
7
+dotenv.config({ path: '.env.local', override: true });
8
+dotenv.config({ path: '.env', override: true });
9
+
10
const ADMIN_BASE_URL = '';
11
12
export const admin = new AdminForth({
0 commit comments