fix(backend): drop .js extension on @/ alias imports (embed/qdrant)

Backend uses extensionless @/ alias imports; the double .js caused
ERR_MODULE_NOT_FOUND at runtime (index.js.js).
This commit is contained in:
asepharyana
2026-08-18 15:19:05 +07:00
parent 1ae19074ee
commit 100b62800c
2 changed files with 4 additions and 4 deletions
@@ -1,5 +1,5 @@
import { config } from "@/shared/config/index.js";
import { createChildLogger } from "@/shared/logger/index.js";
import { config } from "@/shared/config/index";
import { createChildLogger } from "@/shared/logger/index";
const logger = createChildLogger("messages-qdrant");