fix(backend): Rogue config.ts verwijderd/verplaatst

This commit is contained in:
Tibo De Peuter 2025-03-06 14:00:59 +01:00
parent 3cd7496989
commit 7a0d17652c
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
2 changed files with 1 additions and 11 deletions

View file

@ -1,10 +0,0 @@
// Can be placed in dotenv but found it redundant
// Import dotenv from "dotenv";
// Load .env file
// Dotenv.config();
export const DWENGO_API_BASE = 'https://dwengo.org/backend/api';
export const FALLBACK_LANG = 'nl';

View file

@ -1,7 +1,7 @@
import fs from 'fs';
import path from 'path';
import yaml from 'js-yaml';
import { FALLBACK_LANG } from '../../config.js';
import { FALLBACK_LANG } from '../config.js';
import { getLogger, Logger } from '../logging/initalize.js';
const logger: Logger = getLogger();