From 5251d7cb31bd1be55c7427e03916a01544d80173 Mon Sep 17 00:00:00 2001 From: MrPiglr <31398225+MrPiglr@users.noreply.github.com> Date: Mon, 22 Dec 2025 22:59:07 +0000 Subject: [PATCH] Fix @shared/schema path alias to relative import --- server/routes.ts | 2 +- server/storage.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/routes.ts b/server/routes.ts index e665fb6..92ecd6e 100644 --- a/server/routes.ts +++ b/server/routes.ts @@ -1,7 +1,7 @@ import type { Express, Request, Response, NextFunction } from "express"; import { createServer, type Server } from "http"; import { storage } from "./storage.js"; -import { loginSchema, signupSchema } from "@shared/schema"; +import { loginSchema, signupSchema } from "../shared/schema.js"; import { supabase } from "./supabase.js"; import { getChatResponse } from "./openai.js"; diff --git a/server/storage.ts b/server/storage.ts index ddd920e..282fca3 100644 --- a/server/storage.ts +++ b/server/storage.ts @@ -1,4 +1,4 @@ -import { type Profile, type Project, type ChatMessage } from "@shared/schema"; +import { type Profile, type Project, type ChatMessage } from "../shared/schema.js"; import { supabase } from "./supabase.js"; export interface IStorage {