histoire.config.ts 434 B

1234567891011121314151617181920
  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. viteIgnorePlugins: [
  17. 'vite:dts'
  18. ]
  19. })