histoire.config.ts 405 B

1234567891011121314151617181920
  1. import { defineConfig } from 'histoire'
  2. import { HstVue } from '@histoire/plugin-vue'
  3. export default defineConfig({
  4. theme: {
  5. title: 'TresJS',
  6. logo: {
  7. light: '/logo.svg',
  8. dark: '/logo-dark.svg',
  9. },
  10. },
  11. setupFile: './histoire.setup.ts',
  12. plugins: [HstVue()],
  13. defaultStoryProps: {
  14. iconColor: '#00c5a5',
  15. responsiveDisabled: true,
  16. autoPropsDisabled: true,
  17. },
  18. })