this comment has to be ignored for the production since dotenv doesnt exists in prod
Some checks failed
Lint and Format Check / lint-and-format (pull_request) Failing after 10s

This commit is contained in:
Mylloon 2024-09-05 14:02:32 +02:00
parent 4eb05fa1ab
commit f61a24c15f
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -5,6 +5,7 @@ const start_app = () => {
// Load .env if not in prod
if (process.env.NODE_ENV !== "production") {
// @ts-ignore
import("dotenv").then((c) => {
c.config({ path: "./config/.env" });