mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:41:06 +08:00
Vue: Disable docs preset if not using docs/controls
This commit is contained in:
parent
a6ac43ca61
commit
65970379b3
@ -1 +1 @@
|
||||
module.exports = require('./dist/cjs/server/framework-preset-vue');
|
||||
module.exports = require('./dist/cjs/server/preset');
|
||||
|
@ -1,6 +1,9 @@
|
||||
import { findDistEsm, Options, StorybookConfig } from '@storybook/core-common';
|
||||
import { hasDocsOrControls } from '@storybook/docs-tools';
|
||||
|
||||
export function webpackFinal(webpackConfig: any = {}, options: Options) {
|
||||
if (!hasDocsOrControls(options)) return webpackConfig;
|
||||
|
||||
let vueDocgenOptions = {};
|
||||
|
||||
options.presetsList?.forEach((preset) => {
|
||||
@ -27,6 +30,7 @@ export function webpackFinal(webpackConfig: any = {}, options: Options) {
|
||||
return webpackConfig;
|
||||
}
|
||||
|
||||
export const config: StorybookConfig['config'] = (entry = []) => {
|
||||
export const config: StorybookConfig['config'] = (entry = [], options) => {
|
||||
if (!hasDocsOrControls(options)) return entry;
|
||||
return [...entry, findDistEsm(__dirname, 'client/docs/config')];
|
||||
};
|
||||
|
@ -4,8 +4,5 @@ import { LoadOptions } from '@storybook/core-common';
|
||||
export default {
|
||||
packageJson: sync({ cwd: __dirname }).packageJson,
|
||||
framework: 'vue',
|
||||
frameworkPresets: [
|
||||
require.resolve('./framework-preset-vue.js'),
|
||||
require.resolve('./framework-preset-vue-docs.js'),
|
||||
],
|
||||
frameworkPresets: [require.resolve('./preset.js')],
|
||||
} as LoadOptions;
|
||||
|
6
app/vue/src/server/preset.ts
Normal file
6
app/vue/src/server/preset.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import type { StorybookConfig } from '@storybook/core-common';
|
||||
|
||||
export const addons: StorybookConfig['addons'] = [
|
||||
require.resolve('./framework-preset-vue'),
|
||||
require.resolve('./framework-preset-vue-docs'),
|
||||
];
|
Loading…
x
Reference in New Issue
Block a user