cleanup imports

This commit is contained in:
Adam Matthiesen 2024-03-04 12:15:28 -08:00
parent 5b4c3e3268
commit 6f78923d92
2 changed files with 5 additions and 12 deletions

View File

@ -1,32 +1,25 @@
// Node Modules
import path from "node:path";
import { fileURLToPath } from "node:url";
import fse from "fs-extra";
// Utils
import { createResolver, defineIntegration } from "astro-integration-kit";
import { corePlugins } from "astro-integration-kit/plugins";
import { AstroError } from "astro/errors";
import type { AstroIntegration } from "astro";
import c from "picocolors";
import { loadEnv } from "vite";
import latestVersion from "./utils/latestVersion";
// External Integrations
import sitemap from "@astrojs/sitemap";
import robotsTxt from "astro-robots-txt";
// Internal Integrations
// Internal Imports
import { GhostUserConfigSchema } from "./schemas/userconfig";
import ghostRSS from "./integrations/rssfeed";
import ghostOGImages from "./integrations/satoriog";
import ghostThemeProvider from "./integrations/themeprovider";
import latestVersion from "./utils/latestVersion";
// Load environment variables
const ENV = loadEnv("all", process.cwd(), "CONTENT_API");
// Import User Configuration Zod Schema
import { GhostUserConfigSchema } from "./schemas/userconfig";
import type { AstroIntegration } from "astro";
/** Astro-GhostCMS Integration
* @description This integration allows you to use GhostCMS as a headless CMS for your Astro project
* @see https://astro-ghostcms.xyz for the most up-to-date documentation!

View File

@ -14,7 +14,7 @@ export default defineConfig({
ThemeProvider: {
theme: "@matthiesenxyz/astro-ghostcms-brutalbyelian",
},
verbose: true,
verbose: false,
}),
],
});