histoire.config.ts 395 B

1234567891011121314151617
  1. import { HstVue } from "@histoire/plugin-vue"
  2. import { defineConfig } from "histoire"
  3. export default defineConfig({
  4. theme: {
  5. title: "Hoppscotch • UI",
  6. logo: {
  7. square: "/logo.png",
  8. light: "/logo.png",
  9. dark: "/logo.png",
  10. },
  11. // logoHref: "https://ui.hoppscotch.io",
  12. favicon: 'favicon.ico',
  13. },
  14. setupFile: "histoire.setup.ts",
  15. plugins: [HstVue()],
  16. })