@storybook/addon-docs
Version:
Document component usage and properties in Markdown
11 lines • 370 B
JavaScript
import path from 'path';
export async function webpackFinal(webpackConfig, options) {
const svelteOptions = await options.presets.apply('svelteOptions', {}, options);
webpackConfig.module.rules.push({
test: /\.svelte$/,
loader: path.resolve(`${__dirname}/svelte-docgen-loader`),
enforce: 'post',
options: svelteOptions
});
return webpackConfig;
}