astro-hashnode/playground/astro.config.mts

13 lines
279 B
TypeScript
Raw Normal View History

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