histoire.config.ts 419 B

123456789101112131415161718
  1. import { HstVue } from "@histoire/plugin-vue"
  2. import { defineConfig } from "histoire"
  3. export default defineConfig({
  4. theme: {
  5. title: "Hoppscotch Design • Hoppscotch",
  6. logo: {
  7. square: "/logo.svg",
  8. light: "/logo.svg",
  9. dark: "/logo.svg",
  10. },
  11. logoHref: "/",
  12. favicon: "favicon.ico",
  13. },
  14. setupFile: "histoire.setup.ts",
  15. plugins: [HstVue()],
  16. viteIgnorePlugins: ["vite:dts"],
  17. })