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 {