This commit is contained in:
2025-04-25 18:07:13 -03:00
parent 7d51f0be54
commit 0b817094d7
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { MeiliSearch } from "meilisearch";
import { fileURLToPath } from "node:url";
export default function meili() {
return {
name: "meili",
hooks: {
"astro:build:done": async ({ logger, dir }) => {
const pathToRead = fileURLToPath(dir);
console.log(pathToRead);
},
},
};
}