Skip to content

Commit de1e321

Browse files
author
FluxStack Team
committed
fix: correct Logger type import path in server/framework.ts
- Fix import path from '../utils/logger' to '../utils/logger/index' - Resolve TypeScript error: has no exported member named 'Logger' - Build now passes successfully without TypeScript errors
1 parent 2f3887b commit de1e321

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/server/framework.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Elysia } from "elysia"
22
import type { FluxStackConfig, FluxStackContext, Plugin } from "../types"
33
import type { PluginContext, PluginUtils } from "../plugins/types"
44
import { getConfigSync, getEnvironmentInfo } from "../config"
5-
import { logger, type Logger } from "../utils/logger"
5+
import { logger, type Logger } from "../utils/logger/index"
66
import { createTimer, formatBytes, isProduction, isDevelopment } from "../utils/helpers"
77

88
export class FluxStackFramework {

0 commit comments

Comments
 (0)