fix (backend): correct import path

This commit is contained in:
naskya 2024-04-20 03:01:13 +09:00
parent 037b7950a2
commit 56038b174d
No known key found for this signature in database
GPG Key ID: 712D413B3A9FED5C
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { DataSource } from "typeorm";
import config from "./config/index.js";
import { entities } from "./db/postgre.js";
import { config } from "@/config.js";
import { entities } from "@/db/postgre.js";
export default new DataSource({
type: "postgres",