mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-18 06:17:21 +00:00
Fix @shared/schema path alias to relative import
This commit is contained in:
parent
ef323d9016
commit
5251d7cb31
2 changed files with 2 additions and 2 deletions
|
|
@ -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";
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue