fixed unresolved imports
This commit is contained in:
@@ -7,7 +7,7 @@ import sqlite3 from "sqlite3";
|
|||||||
import path from "path";
|
import path from "path";
|
||||||
import { fileURLToPath } from "url";
|
import { fileURLToPath } from "url";
|
||||||
import { asyncDatabaseRead } from "~/utils/asyncDatabase";
|
import { asyncDatabaseRead } from "~/utils/asyncDatabase";
|
||||||
import type { ArticleInfo } from "~/utils/news";
|
import type { ArticleInfo } from "~/utils/types/news";
|
||||||
|
|
||||||
const __filename = fileURLToPath(import.meta.url);
|
const __filename = fileURLToPath(import.meta.url);
|
||||||
const __dirname = path.dirname(__filename);
|
const __dirname = path.dirname(__filename);
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
import sqlite3 from "sqlite3";
|
import sqlite3 from "sqlite3";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { fileURLToPath } from "url";
|
import { fileURLToPath } from "url";
|
||||||
import type { GalleryEntry } from "~/utils/galleryEntry";
|
import type { GalleryEntry } from "~/utils/types/galleryEntry";
|
||||||
import { asyncDatabaseRead } from "~/utils/asyncDatabase";
|
import { asyncDatabaseRead } from "~/utils/asyncDatabase";
|
||||||
|
|
||||||
const __filename = fileURLToPath(import.meta.url);
|
const __filename = fileURLToPath(import.meta.url);
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import sqlite3 from "sqlite3";
|
|||||||
import path from "path";
|
import path from "path";
|
||||||
import { fileURLToPath } from "url";
|
import { fileURLToPath } from "url";
|
||||||
import { asyncDatabaseRead } from "~/utils/asyncDatabase";
|
import { asyncDatabaseRead } from "~/utils/asyncDatabase";
|
||||||
import type { NewsEntry } from "~/utils/news";
|
import type { NewsEntry } from "~/utils/types/news";
|
||||||
|
|
||||||
const __filename = fileURLToPath(import.meta.url);
|
const __filename = fileURLToPath(import.meta.url);
|
||||||
const __dirname = path.dirname(__filename);
|
const __dirname = path.dirname(__filename);
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
* @module utils/hamburgerMenu
|
* @module utils/hamburgerMenu
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { DropDownEntry } from "#imports";
|
import type { DropDownEntry } from "./dropDown";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface for HamburgerMenu component properties
|
* Interface for HamburgerMenu component properties
|
||||||
|
|||||||
Reference in New Issue
Block a user