adminforth 2.4.0-next.71 → 2.4.0-next.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,10 @@ import fs from 'fs/promises';
2
2
  import path from 'path';
3
3
  import chalk from 'chalk';
4
4
  import jiti from 'jiti';
5
+ import dotenv from "dotenv";
5
6
 
7
+ dotenv.config({ path: '.env.local', override: true });
8
+ dotenv.config({ path: '.env', override: true });
6
9
 
7
10
  export async function loadAdminForthConfig() {
8
11
  const configFileName = 'index.ts';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.71",
3
+ "version": "2.4.0-next.72",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",