Browse Source

fix: remove missed use of path alias

Aaron Bassett 6 months ago
parent
commit
3e14458d1d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/developer-hub/src/app/api/search/route.ts

+ 1 - 1
apps/developer-hub/src/app/api/search/route.ts

@@ -1,4 +1,4 @@
-import { source } from "@/src/source";
 import { createFromSource } from "fumadocs-core/search/server";
+import { source } from "../../../source";
 
 export const { GET } = createFromSource(source);