fixed imports. Maybe.

This commit is contained in:
Eric Gullickson
2025-08-23 11:28:01 -05:00
parent 8374f1ee66
commit 5f67a904e0
5 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@
* @ai-context Validates all env vars at startup, single source of truth
*/
import { z } from 'zod';
import dotenv from 'dotenv';
import * as dotenv from 'dotenv';
dotenv.config();

View File

@@ -2,7 +2,7 @@
* @ai-summary Structured logging with Winston
* @ai-context All features use this for consistent logging
*/
import winston from 'winston';
import * as winston from 'winston';
import { env, isDevelopment } from '../config/environment';
export const logger = winston.createLogger({