UNPKG

@m1stergo/storybook-autodocs

Version:

Storybook autodocs is an utility that takes the typescript definitions of your Vue component and defines the argTypes for storybook automatically.

13 lines (11 loc) 257 B
import { resolve } from 'path' import { defineConfig } from 'vite' export default defineConfig({ build: { lib: { entry: resolve(__dirname, 'src/index.js'), name: 'storybook-autodocs', fileName: 'storybook-autodocs', }, }, });