1
0
mirror of synced 2025-12-19 18:10:59 -05:00
Files
docs/empty.ts

13 lines
306 B
TypeScript

// Empty module to satisfy Turbopack resolveAlias fallback for Node.js modules
// See turbopack config in next.config.ts
// No-op function that returns itself for chaining
export const createLogger = () => ({
info: () => {},
warn: () => {},
error: () => {},
debug: () => {},
})
export default {}