astro-hashnode/playground/astro.config.mts

13 lines
279 B
TypeScript

import { defineConfig } from "astro/config";
import astroHashnode from "@matthiesenxyz/astro-hashnode";
// https://astro.build/config
export default defineConfig({
integrations: [
astroHashnode({
hashnodeURL: "astroplayground.hashnode.dev",
verbose: true,
})
],
});