Spaces:
Configuration error
Configuration error
File size: 212 Bytes
ecaa7fc |
1 2 3 4 5 6 7 8 9 |
import dotenv from 'dotenv'
import path from 'path'
const envPath = path.join(__dirname, '..', '..', '.env')
dotenv.config({ path: envPath, override: true })
export * from './Interface'
export * from './utils'
|