mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-29 13:49:31 +07:00
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
// import env
|
|
import * as dotenv from 'dotenv';
|
|
// mock indexedDB to test with dexie
|
|
// refs: https://github.com/dumbmatter/fakeIndexedDB#dexie-and-other-indexeddb-api-wrappers
|
|
import 'fake-indexeddb/auto';
|
|
|
|
dotenv.config();
|