Fix @shared/schema path alias to relative import

This commit is contained in:
MrPiglr 2025-12-22 22:59:07 +00:00
parent ef323d9016
commit 5251d7cb31
2 changed files with 2 additions and 2 deletions

View file

@ -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";

View file

@ -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 {