Ian VanSchooten 46fe3ea3fb Remove duplicate vue and svelte plugins
It's expected that the original vite.config.js should have one, and we're using that now.
2022-08-30 23:24:52 -04:00

40 lines
984 B
TypeScript

import path from 'path';
import fs from 'fs';
import type { StorybookConfig } from '@storybook/builder-vite';
import { vueDocgen } from './plugins/vue-docgen';
export const addons: StorybookConfig['addons'] = ['@storybook/vue3'];
export const core: StorybookConfig['core'] = {
builder: '@storybook/builder-vite',
};
export function readPackageJson(): Record<string, any> | false {
const packageJsonPath = path.resolve('package.json');
if (!fs.existsSync(packageJsonPath)) {
return false;
}
const jsonContent = fs.readFileSync(packageJsonPath, 'utf8');
return JSON.parse(jsonContent);
}
export const viteFinal: StorybookConfig['viteFinal'] = async (config, { presets }) => {
const { plugins = [] } = config;
plugins.push(vueDocgen());
const updated = {
...config,
plugins,
resolve: {
...config.resolve,
alias: {
...config.resolve?.alias,
vue: 'vue/dist/vue.esm-bundler.js',
},
},
};
return updated;
};